OBJECT
Player
A player
link GraphQL Schema definition
- type Player {
- ID :
- String :
- String :
- # Most recent active & published rankings
- #
- # Arguments
- # limit: [Not documented]
- # videogameId: [Not documented]
- Int, : ID): [PlayerRank] ( :
- # Recent sets for this player.
- #
- # Arguments
- # opponentId: Use this to get H2H history between two players
- (
- ID :
- ): [Set] @deprecated( reason: "Use the sets field instead." )
- # Recent standings
- #
- # Arguments
- # videogameId: [Not documented]
- # limit: Number of recent standings to fetch. Default value is 3.
- # Maximum value is 20.
- ID, : Int): [Standing] ( :
- # Set history for this player.
- #
- # Arguments
- # page: [Not documented]
- # perPage: [Not documented]
- # filters: Supported filter options to filter down set results.
- Int, : Int, : SetFilters): SetConnection ( :
- User :
- }