OBJECT

UserDropAwardConnection

A list of Drops awarded to the user. // deprecated.

link GraphQL Schema definition

1type UserDropAwardConnection {
2
3# The Drops awarded to the user.
4nodes: [DropAward]! @deprecated( reason: "No longer supported" )
5
6# The number of drop awards a user has received.
7totalCount: Int @deprecated( reason: "No longer supported" )
8
9}