Hello, we are trying to use Search By Radius to get locations around a set of coordinates. We are using R to pass the following query, but when we do, we get a 400 error. When we run the same query in the GUI here, it works. Anyone can help us figure out what’s going wrong? Thank you!
query radius { search( filter: { by_radius: { latitude: 37.78247 longitude: -122.407752 distanceInMeters: 100} } ) { places { results(first: 10) { edges { node { placekey safegraph_core {location_name } } } } } } }