Last active
November 22, 2019 22:33
-
-
Save duanebester/63d5395bcd0cecacf8960b29a1932d5f to your computer and use it in GitHub Desktop.
GraphQL Example BBox Query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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