graphql-engine/v3/drill.yml
Manas Agarwal e27e5b7ffe v3: open-source hasura v3 engine
Hasura V3 Engine v3.alpha.12-19-2023
V3-GitOrigin-RevId: 6605575a52b347b5e9a14ecd1cc736f113c663b3

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/10567
Co-authored-by: Vishnu Bharathi <4211715+scriptnull@users.noreply.github.com>
GitOrigin-RevId: 38c98a4b1971efe3ac724c2371c43ceb7d31f140
2023-12-19 09:05:39 +00:00

24 lines
532 B
YAML

---
concurrency: 10
base: 'http://localhost:3000'
iterations: 10000
plan:
- name: __typename query
request:
url: /graphql
method: POST
body: '{ "query": "query { __typename }" }'
headers:
Content-Type: 'application/json'
Host: example.hasura.app
- name: AlbumByID query
request:
url: /graphql
method: POST
body: '{ "query": "query { AlbumByID(AlbumId: 1) { Title } }" }'
headers:
Content-Type: 'application/json'
Host: example.hasura.app