OBJECT
UserDropReward
A list of Drops awarded to the user via Drops2.0.
link GraphQL Schema definition
1 type UserDropReward { 2 3 # The DropBenefit that a user is entitled to. 4 : DropBenefit! 5 6 # The game that awarded the Drop. 7 : Game @deprecated( reason: "use benefit.Game" ) 8 9 # The assigned ID of the awarded reward. 10 : ID! @deprecated( reason: "use benefit.id" ) 11 12 # The image URL of the Benefit. Images are 80x80 pixels. 13 : String! @deprecated( reason: "use benefit.imageAssetURL" ) 14 15 # Flag if the user is connected to the game in order to receive the Reward. 16 : Boolean! 17 18 # Specifies if this reward is considered for a game that is available on iOS. 19 : Boolean! @deprecated( reason: "use benefit.isIosAvailable" ) 20 21 # The timestamp when the Benefit was last awarded to the user. 22 : Time! 23 24 # The developer-provided name of the awarded Benefit. 25 : String! @deprecated( reason: "use benefit.name" ) 26 27 # Link where the user can connect their account necessary to receive the reward. 28 : String! @deprecated( reason: "use benefit.accountLinkURL" ) 29 30 # The number of drop awards a user has received. 31 : Int! 32 33 }