mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-20 14:01:39 +03:00
9d93baa96f
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4776 Co-authored-by: Tom Harding <6302310+i-am-tom@users.noreply.github.com> Co-authored-by: Brandon Martin <40686+codedmart@users.noreply.github.com> GitOrigin-RevId: ca962e3bfaa28ef00c5d04273d6604348d7da1c8
10 lines
134 B
YAML
10 lines
134 B
YAML
query: |
|
|
subscription ($id: Int!) {
|
|
articles (where: {id: {_eq: $id}}) {
|
|
title
|
|
content
|
|
}
|
|
}
|
|
variables:
|
|
id: 1
|