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
In MLB, I am trying to access box rewards over time for all players.
I am using this query
query ($after: String){ so5 { so5Fixture(slug: "baseball-26-29-apr-2024") { so5Leaderboard(so5LeaderboardType: MLB_LIMITED_NATIONAL_LEAGUE) { so5Rewards(after: $after) { pageInfo { hasNextPage endCursor } nodes { probabilisticBundle { id } } } } } } }
This seems to work, but
{"message": "Response not successful: Received status code 500"}
items
probabilisticBundle
so5Rewards
This is the query I am successfully using after Apr 29 to retrieve box reward + content
query ($after: String) { so5 { so5Fixture(slug: "baseball-5-8-jul-2024") { so5Leaderboard(so5LeaderboardType: MLB_LIMITED_NATIONAL_LEAGUE) { so5Rankings(after: $after) { pageInfo { hasNextPage endCursor } nodes { score user { slug } so5Rewards { coinAmount amount { usd } rewardCards { quality } probabilisticBundle { config { name } items { id ... on ProbabilisticBundleSlotConversionCreditItem { maxDiscount { usd } } ... on ProbabilisticBundleSlotCardItem { anyCard { slug } } } } } } } } } } }
My questions
I am not sure if this is a bug or intended behavior. Thank you for the clarification!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In MLB, I am trying to access box rewards over time for all players.
I am using this query
This seems to work, but
{"message": "Response not successful: Received status code 500"}
as soon as I add anitems
field to theprobabilisticBundle
so5Rewards
field is empty for all GWs prior to Apr 15probabilisticBundle
is reported in GW prior to Apr 29 (although I believe they did exist)This is the query I am successfully using after Apr 29 to retrieve box reward + content
My questions
I am not sure if this is a bug or intended behavior. Thank you for the clarification!
The text was updated successfully, but these errors were encountered: