mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
a9e3a1b4bd
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2495 GitOrigin-RevId: ef250a0796200be6b75363b4275eb8a7ae780154
20 lines
353 B
YAML
20 lines
353 B
YAML
description: Simple GraphQL object query on author
|
|
url: /v1/graphql
|
|
status: 200
|
|
response:
|
|
data:
|
|
hasura_test_author:
|
|
- name: Author 1
|
|
id: 1
|
|
- name: Author 2
|
|
id: 2
|
|
query:
|
|
# https://graphql.org/learn/serving-over-http/#post-request
|
|
query: |
|
|
query MyQuery {
|
|
hasura_test_author {
|
|
name
|
|
id
|
|
}
|
|
}
|