We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Geo filters enable read requests to return only data bounded by specified geographic coordinates for tables that support it.
Find all rows within a specified proximity to a geo point:
(fetch :global {:geo {:$circle {:$center [34.06021,-118.41828] :$meters 5000}}})
Find the closest places to a specified point:
(fetch :global {:geo {:$point [34.06021,-118.41828]}})