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