Created
August 13, 2017 20:21
-
-
Save pranayairan/a3553a4950491a277a377dc19101e45d to your computer and use it in GitHub Desktop.
This file contains 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 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