Skip to content

Instantly share code, notes, and snippets.

@peggyrayzis
Last active June 5, 2017 17:25
Show Gist options
  • Save peggyrayzis/3efeff33123bfb455537c0a34c0ad6a1 to your computer and use it in GitHub Desktop.
Save peggyrayzis/3efeff33123bfb455537c0a34c0ad6a1 to your computer and use it in GitHub Desktop.
query MatchSummary($id: String!, $season: String) {
match(id: $id) {
stats {
scores {
home {
score
isWinner: is_winner
}
away {
score
isWinner: is_winner
}
}
}
home {
id: opta_id
record(season: $season)
}
away {
id: opta_id
record(season: $season)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment