Skip to content

Instantly share code, notes, and snippets.

@pranayairan
Created August 13, 2017 20:21
Show Gist options
  • Save pranayairan/a3553a4950491a277a377dc19101e45d to your computer and use it in GitHub Desktop.
Save pranayairan/a3553a4950491a277a377dc19101e45d to your computer and use it in GitHub Desktop.
query SearchYelp($radius: Float!, $latitude: Float!,$longitude: Float!,$offset:Int!,$term:String!) {
search(term: $term,radius: $radius, latitude: $latitude,longitude: $longitude, limit: 20, offset: $offset) {
total
business {
id
name
rating
photos
price
coordinates {
latitude
longitude
}
categories {
title
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment