OBJECT

Drop

Contains all of the information about a Drop awarded to a user.

link GraphQL Schema definition

1type Drop {
2
3# The game that awarded the Drop.
4game: Game @deprecated( reason: "No longer supported" )
5
6# The assigned ID of this drop.
7id: ID! @deprecated( reason: "No longer supported" )
8
9# The image URL of the Drop. Images are 80x80 pixels.
10imageURL: String! @deprecated( reason: "No longer supported" )
11
12# The developer-provided name of the Drop.
13name: String! @deprecated( reason: "No longer supported" )
14
15}