Skip to content

Instantly share code, notes, and snippets.

@joninsky
Created April 20, 2020 23:23
Show Gist options
  • Save joninsky/265e75a7e67cf008316f0532da326015 to your computer and use it in GitHub Desktop.
Save joninsky/265e75a7e67cf008316f0532da326015 to your computer and use it in GitHub Desktop.
BusinessesGraphQL
query Businesses($searchTerm: String, $latitude: Float, $longitude: Float) {
search(term: $searchTerm, latitude: $latitude, longitude: $longitude) {
business {
...BusinessFragment
}
}
}
fragment BusinessFragment on Business {
id
name
url
rating
photos
distance
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment