Skip to content

Commit

Permalink
chore: update configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmath committed Oct 1, 2024
1 parent 5025f11 commit 09bead4
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions graphql/tailcall/benchmark.graphql
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
schema
@server(
port: 8000
dedupe: true
)
@server(port: 8000)
@upstream(
baseURL: "http://jsonplaceholder.typicode.com"
poolMaxIdlePerHost: 200
Expand All @@ -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 {
Expand All @@ -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)
}

0 comments on commit 09bead4

Please sign in to comment.