tstor/graphql/subscription.graphql

9 lines
114 B
GraphQL
Raw Normal View History

2024-03-17 21:00:34 +00:00
type Subscription {
2025-01-07 22:25:46 +00:00
taskProgress(taskID: ID!): Progress
2024-03-17 21:00:34 +00:00
}
interface Progress {
2025-01-07 22:25:46 +00:00
current: Int!
total: Int!
}