bitmagnet/graphql/queries/QueueJobs.graphql
mgdigital 309e3b892b
Some checks are pending
Checks / lint (push) Waiting to run
Checks / test (push) Waiting to run
Checks / generated (push) Waiting to run
CodeQL / Analyze (go) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Webui revamp (#280)
2024-10-14 17:04:28 +01:00

10 lines
171 B
GraphQL

#import "../fragments/QueueJobsQueryResult"
query QueueJobs($input: QueueJobsQueryInput!) {
queue {
jobs(input: $input) {
...QueueJobsQueryResult
}
}
}