Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. query individualRaceStandings ($leagueSlug: String!, $perPage: Int, $page: Int) {
  2. league(slug: $leagueSlug) {
  3. id
  4. name
  5. events {
  6. nodes {
  7. id
  8. name
  9. phaseGroups {
  10. id
  11. standings(query: {perPage: $perPage, page: $page}) {
  12. nodes {
  13. id
  14. entrant{
  15. participants{
  16. player {
  17. id
  18. gamerTag
  19. }
  20. }
  21. }
  22. placement
  23. metadata
  24. }
  25. }
  26. }
  27. }
  28. }
  29. }
  30. },
  31. {
  32. "leagueSlug": "test-race-league",
  33. "page": 1,
  34. "perPage": 10
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement