Advertisement
Guest User

Untitled

a guest
May 26th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. query MatchesQuery($sport_slug: String!, $this_week: String!, $next_week: String!, $limit: Int!, $offset: Int!) {
  2. Match(lang: "ru", sport_slug: $sport_slug, type: "popular", orderby: ["match_date", "desc"], datebetween: [$this_week, $next_week], limit: $limit, skip: $offset) {
  3. unique_tournament_name
  4. unique_tournament {
  5. name
  6. country {
  7. name
  8. }
  9. }
  10. league_slug
  11. match_date
  12. status {
  13. code
  14. name
  15. }
  16. result_score
  17. teams {
  18. name
  19. logo(preset: "w64-h64")
  20. }
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement