stash/ui/v2.5/graphql/subscriptions.graphql
WithoutPants e5929389b4
Make migration an asynchronous task (#4666)
* Add failed state and error to Job
* Move migration code
* Add websocket monitor
* Make migrate a job managed task
2024-03-14 11:06:23 +11:00

23 lines
304 B
GraphQL

subscription JobsSubscribe {
jobsSubscribe {
type
job {
id
status
subTasks
description
progress
error
}
}
}
subscription LoggingSubscribe {
loggingSubscribe {
...LogEntryData
}
}
subscription ScanCompleteSubscribe {
scanCompleteSubscribe
}