How can I get players of a team?
Article 2971078, Status: VALIDATED
Table of Contents
❓Issue/Question
- The team doesn't have players listed.
- Where are players of a team available?
💻Environment/Context
- Central Data
🥚Cause
- Querying for a team will not provide an option to directly list players of that team
👌Resolution/Answer
- To find players of a team, you need to use the Players query
- First get the ID of the team you want the players of and then use it as a filter. Example:
query Players {
players(filter: { teamIdFilter: { id: "52314" } }) {
edges {
node {
id
nickname
}
}
}
}