mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +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
13 lines
161 B
YAML
13 lines
161 B
YAML
query: |
|
|
subscription ($ids: [Int!]) {
|
|
articles (where: {id: {_in: $ids}}) {
|
|
title
|
|
content
|
|
}
|
|
}
|
|
variables:
|
|
ids:
|
|
- 1
|
|
- 2
|
|
- 3
|