Skip to content

Instantly share code, notes, and snippets.

@duanebester
Last active November 22, 2019 22:33
Show Gist options
  • Save duanebester/63d5395bcd0cecacf8960b29a1932d5f to your computer and use it in GitHub Desktop.
Save duanebester/63d5395bcd0cecacf8960b29a1932d5f to your computer and use it in GitHub Desktop.
GraphQL Example BBox Query
query ($bbox: BBox) { # We tell GQL the type of the $bbox variable
geoSearch(bbox: $bbox) {
users {
hits {
id
name
}
}
coffeeShops {
hits {
id
name
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment