mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
a63fa18d9c
https://github.com/hasura/graphql-engine-mono/pull/1697 GitOrigin-RevId: 6cdf8acc90d3fd97d20a3ee68c84306c3f589370
18 lines
276 B
YAML
18 lines
276 B
YAML
description: A reader fetch authors with atleast one published article
|
|
url: /v1/graphql
|
|
status: 200
|
|
headers:
|
|
X-Hasura-Role: reader
|
|
query:
|
|
query: |
|
|
query {
|
|
author{
|
|
name
|
|
}
|
|
}
|
|
response:
|
|
data:
|
|
author:
|
|
- name: Author 1
|
|
- name: Author 2
|