Skip to content

Commit

Permalink
chore: update graphql file
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmath committed Oct 22, 2024
1 parent e9641ba commit 4b0eea8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions graphql/tailcall/benchmark.graphql
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
schema
@server(port: 8000)
@upstream(
baseURL: "http://jsonplaceholder.typicode.com"
poolMaxIdlePerHost: 200
tcpKeepAlive: 60
proxy: { url: "http://127.0.0.1:3000" }
Expand All @@ -10,7 +9,8 @@ schema
}

type Query {
posts: [Post] @http(path: "/posts", dedupe: true)
posts: [Post]
@http(url: "http://jsonplaceholder.typicode.com/posts", dedupe: true)
greet: String! @expr(body: "Hello World!")
}

Expand Down

0 comments on commit 4b0eea8

Please sign in to comment.