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