diff --git a/graphql/tailcall/benchmark.graphql b/graphql/tailcall/benchmark.graphql index 8d25156b..11c7c075 100644 --- a/graphql/tailcall/benchmark.graphql +++ b/graphql/tailcall/benchmark.graphql @@ -1,8 +1,5 @@ schema - @server( - port: 8000 - dedupe: true - ) + @server(port: 8000) @upstream( baseURL: "http://jsonplaceholder.typicode.com" poolMaxIdlePerHost: 200 @@ -14,7 +11,7 @@ schema type Query { posts: [Post] @http(path: "/posts") - greet: String! @expr(body: "Hello World!") + greet: String! @expr(body: "Hello World!") } type User { @@ -31,5 +28,5 @@ type Post { userId: Int! title: String! body: String! - user: User @http(path: "/users/{{value.userId}}") + user: User @http(path: "/users/{{value.userId}}", dedupe: true) }