18 lines
263 B
GraphQL
18 lines
263 B
GraphQL
query NearbyPlaces($input: NearbyPlacesInput!) {
|
|
nearbyPlaces(input: $input) {
|
|
id
|
|
googlePlaceId
|
|
name
|
|
latitude
|
|
longitude
|
|
googlePrimaryType
|
|
googleTypes
|
|
experiences {
|
|
id
|
|
status
|
|
analysis
|
|
createdAt
|
|
}
|
|
}
|
|
}
|