Antonio Rapuano (KEBULA)
09/24/2024, 3:03 PMgeometry
, which is a geopoint[]
. Can I query this collection by specifying a [lat, long] pair and retrieve all the documents where the geometry
contains this point? Is searching within a radius implemented for geopoint[]
arrays? In other words, given a point, I want to retrieve all documents that have a geopoint[]
containing that point.Jason Bosco
09/24/2024, 4:14 PMIs searching within a radius implemented for geopoint[] arrays?Yes. If any of the geopoints inside that array of geopoints are within the given radius, that document is returned.
given a point, I want to retrieve all documents that have a geopoint[] containing that point.This is not supported.
Antonio Rapuano (KEBULA)
09/25/2024, 7:52 AMJason Bosco
09/25/2024, 2:40 PM