OBJECT

UserLeaderboardItem

UserLeaderboardItem at a specific node in a leaderboard connection.

link GraphQL Schema definition

1type UserLeaderboardItem {
2
3# id the id of this leaderboard item.
4id: ID!
5
6# rank the ordinal rank of this leaderboard item.
7rank: Int!
8
9# score the numerical value by which this leaderboard is sorted.
10score: Int!
11
12# user is the user that holds this position.
13user: User
14
15}