OBJECT

Player

A player

link GraphQL Schema definition

  • type Player {
  • id: ID
  • gamerTag: String
  • prefix: String
  • # Most recent active & published rankings
  • #
  • # Arguments
  • # limit: [Not documented]
  • # videogameId: [Not documented]
  • rankings(limit: Int, videogameId: ID): [PlayerRank]
  • # Recent sets for this player.
  • #
  • # Arguments
  • # opponentId: Use this to get H2H history between two players
  • recentSets(
  • opponentId: 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.
  • recentStandings(videogameId: ID, limit: Int): [Standing]
  • # Set history for this player.
  • #
  • # Arguments
  • # page: [Not documented]
  • # perPage: [Not documented]
  • # filters: Supported filter options to filter down set results.
  • sets(page: Int, perPage: Int, filters: SetFilters): SetConnection
  • user: User
  • }