Loading request...
Allow accessing properties within a GEOJSON object when using a nearby query.
Let's say I've GEO JSON data like this: { "type": "Feature", "geometry": { "type": "Point", "coordinates": [6.892769, 79.855802] }, "properties": { "status": "F" } } Now if I try the following query it's working: NEARBY driver-info LIMIT 10 DISTANCE POINT 6.892769 79.855802 But I want to look for **properties status** value for each NEARBY query, how can do that? I tried many methods but nothing work.