mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
efc9fc7ba9
* select fields by primary key col values as argument values, fix #304 * change field name 'table_by_pkey' to 'table_by_pk'
17 lines
247 B
YAML
17 lines
247 B
YAML
description: select query on author with id = 1
|
|
url: /v1alpha1/graphql
|
|
status: 200
|
|
response:
|
|
data:
|
|
author_by_pk:
|
|
name: Author 1
|
|
id: 1
|
|
query:
|
|
query: |
|
|
query {
|
|
author_by_pk(id: 1){
|
|
id
|
|
name
|
|
}
|
|
}
|