mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2025-12-28 06:34:17 +00:00
10 lines
171 B
GraphQL
10 lines
171 B
GraphQL
#import "../fragments/QueueJobsQueryResult"
|
|
|
|
query QueueJobs($input: QueueJobsQueryInput!) {
|
|
queue {
|
|
jobs(input: $input) {
|
|
...QueueJobsQueryResult
|
|
}
|
|
}
|
|
}
|