OBJECT

Broadcast

A historical representation of a live stream.

link GraphQL Schema definition

1type Broadcast {
2
3# The game which was last streamed during the broadcast.
4game: Game
5
6# The broadcast's unique identifier.
7id: ID
8
9# When the broadcast started.
10startedAt: Time
11
12# The title of the broadcast.
13title: String
14
15}