OBJECT
DropObject
Contains all of the information about a Drop awardable to a user. // deprecated in favor of EventBasedDrop and TimeBasedDrop.
link GraphQL Schema definition
1 type DropObject { 2 3 # The redirect URL where a user can link their account. 4 : String! @deprecated( reason: "No longer supported" ) 5 6 # The actions defining what happens after a drop is triggered. 7 : [DropAction!]! @deprecated( reason: "No longer supported" ) 8 9 # The description of this drop. 10 : String! @deprecated( reason: "No longer supported" ) 11 12 # The URL that links to the details / marketing page for this drop. 13 : String! @deprecated( reason: "No longer supported" ) 14 15 # The date at which this drop can no longer occur. 16 : Time! @deprecated( reason: "No longer supported" ) 17 18 # The game associated with this drop. 19 : Game! @deprecated( reason: "No longer supported" ) 20 21 # The Drops ID. 22 : ID! @deprecated( reason: "No longer supported" ) 23 24 # An image asset for this drop. 25 : String! @deprecated( reason: "No longer supported" ) 26 27 # The friendly name of this drop. 28 : String! @deprecated( reason: "No longer supported" ) 29 30 # The OrganizationID of the owner of this drop. 31 : ID! @deprecated( reason: "No longer supported" ) 32 33 # The friendly name of the owner of this drop. 34 : String! @deprecated( reason: "No longer supported" ) 35 36 # The Quest name for this specific Drop. 37 : String! @deprecated( reason: "No longer supported" ) 38 39 # The rules defining what needs to happen to trigger this drop. 40 : [DropRule!]! @deprecated( reason: "No longer supported" ) 41 42 # The date at which this drop can start to occur. 43 : Time! @deprecated( reason: "No longer supported" ) 44 45 }
link Required by
- ChannelA User's place on Twitch.
- ClaimDropRewardsPayloadClaimDropRewardsPayload returns the state of the claim.
- DashboardActivityFeedActivityDropClaimWindowOpenWhen a creator completes a drop quest and a drop can now be claimed by users/viewers.
- DropEligibilityContains all of the information about a Drop awarded to a user.