We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using a query to fetch NBA players scores gameweek per gameweek:
latestFixtureStats is marked as being deprecated, with the following confusing error message:
latestFixtureStats
The field NBAPlayer.latestFixtureStats is deprecated. use latestFixtureStats
What should I update this field to? 🤔
The full query is:
query FetchNBACards($afterCursor: String, $pageSize: Int!) { currentUser { cards(after: $afterCursor, first: $pageSize, sport: NBA) { nodes { serialNumber rarityTyped pictureUrl seasonYear ... on NBACard { powerBreakdown { season collection xp } basketballPlayer { slug displayName age anyPositions latestFixtureStats(last: 10) { fixture { gameWeek startDate endDate } score status { upcomingGames { homeTeam { fullName } awayTeam { fullName } } gameStats { score playedInGame detailedStats { points rebounds assists blocks steals turnovers made3PointFGs doubleDoubles tripleDoubles } } } } activeClub { name } averageScore(type: LAST_TEN_PLAYED_SO5_AVERAGE_SCORE) } } } pageInfo { endCursor hasNextPage } } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am using a query to fetch NBA players scores gameweek per gameweek:
latestFixtureStats
is marked as being deprecated, with the following confusing error message:What should I update this field to? 🤔
The full query is:
The text was updated successfully, but these errors were encountered: