mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
22 lines
334 B
YAML
22 lines
334 B
YAML
|
description: Bulk query
|
||
|
url: /v1/query
|
||
|
status: 200
|
||
|
response:
|
||
|
- []
|
||
|
- result_type: TuplesOk
|
||
|
result:
|
||
|
- ['count']
|
||
|
- ['0']
|
||
|
query:
|
||
|
type: bulk
|
||
|
args:
|
||
|
- type: select
|
||
|
args:
|
||
|
table: author
|
||
|
columns:
|
||
|
- name
|
||
|
- type: run_sql
|
||
|
args:
|
||
|
sql: "select count(*) from author"
|
||
|
read_only: true
|