OBJECT

TimeBasedDropSelfEdge

User specific data associated with this drop.

link GraphQL Schema definition

1type TimeBasedDropSelfEdge {
2
3# The current progress for a given user towards this drop.
4currentMinutesWatched: Int!
5
6# The ID of the drop reward granted to the user if the drop is claimable, returns
7# null otherwise.
8dropInstanceID: ID
9
10# Indicates whether or not all preconditions have been met, and the drop is
11# available to get progress.
12hasPreconditionsMet: Boolean!
13
14# Whether the user has already claimed their reward for this drop.
15isClaimed: Boolean!
16
17}