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
No description provided.
The text was updated successfully, but these errors were encountered:
After poking around the smash.gg API, I believe these queries are what I'm after.
Fetch the phases:
query EventStandings($eventId: ID!) { event(id: $eventId) { id name phases { id bracketType name phaseOrder } } }
Fetch the phase sets:
query PhaseSets($phaseId: ID!, $page: Int!, $perPage: Int!) { phase(id: $phaseId) { id name sets( page: $page perPage: $perPage sortType: CALL_ORDER ){ pageInfo { total totalPages } nodes { id round slots { entrant { id name } } } } } }
Fetch the set:
query set($setId: ID!) { set(id: $setId) { id slots { standing { entrant { name } stats { score { value } } } } } }
Sorry, something went wrong.
opeik
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: