mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-30 02:44:10 +03:00
10 lines
134 B
YAML
10 lines
134 B
YAML
|
query: |
|
||
|
subscription ($id: Int!) {
|
||
|
articles (where: {id: {_eq: $id}}) {
|
||
|
title
|
||
|
content
|
||
|
}
|
||
|
}
|
||
|
variables:
|
||
|
id: 1
|