tstor/graphql/subscription.graphql
royalcat 5b11b70370
All checks were successful
docker / build-docker (push) Successful in 5m42s
remove old torrent for better times
2025-01-08 01:25:46 +03:00

8 lines
114 B
GraphQL

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