OBJECT

DropAward

Data about the award of a drop to a user. // deprecated.

link GraphQL Schema definition

1type DropAward {
2
3# The timestamp when the Drop was awarded to the user.
4awardedAt: Time @deprecated( reason: "No longer supported" )
5
6# The drop that was awarded to the user.
7node: Drop @deprecated( reason: "No longer supported" )
8
9# The reason the Drop was awarded.
10reason: String @deprecated( reason: "No longer supported" )
11
12}