Skip to content

Instantly share code, notes, and snippets.

@duanebester
Created November 26, 2019 16:58
Show Gist options
  • Save duanebester/41ec517717b29e405f429c424b8f9d83 to your computer and use it in GitHub Desktop.
Save duanebester/41ec517717b29e405f429c424b8f9d83 to your computer and use it in GitHub Desktop.
Search users and coffee shops with name filter for each
query ($bbox: BBox) {
geoSearch(bbox: $bbox) {
users(name: "M") {
hits {
id
name
location {
lat
lon
}
}
total
}
coffeeShops(name: "Starbucks") {
hits {
name
}
total
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment