Stream Queue

In this example we will get a stream queue on a given tournament, including:

  • Information about each stream
  • Information about the sets for each stream
  • Request
  • Response
query StreamQueueOnTournament($tourneySlug: String!) {
tournament(slug: $tourneySlug) {
id
streamQueue {
stream {
streamSource
streamName
}
sets {
id
}
}
}
},
{
"tourneySlug": "tournament/20190128-oh-really-stream-queues"
}

You can request other fields on sets, and there are also some other fields on stream that you can request. Check the schema for what's available!