mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
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
|