OBJECT

DropCurrentSession

The drop that is closest to completing for the current user that is actively earning progress.

link GraphQL Schema definition

1type DropCurrentSession {
2
3# The channelID where Progresso is currently tracking progress.
4channel: Channel
5
6# The number of minutes that the user has accrued toward completing the drop.
7currentMinutesWatched: Int!
8
9# The ID for the Drop that we're currently tracking (not surfaced; used for
10# fulfillment).
11dropID: ID!
12
13# The Game name that we're tracking for the currently-tracked drop.
14game: Game
15
16# The total number of minutes required in order to complete the drop.
17requiredMinutesWatched: Int!
18
19}