tstor/graphql/subscription.graphql

8 lines
114 B
GraphQL

type Subscription {
taskProgress(taskID: ID!): Progress
}
interface Progress {
current: Int!
total: Int!
}