You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The geoNear aggregate stage should accept Doubles for its parameters maxDistance, minDistance and distanceMultiplier.
This way if you're doing any division for converting between units of distance it's not just rounded out to 0 and it looks like no documents match.
Describe the solution you'd like
Replace the geoNear aggregate stage to accept Doubles vs Int for maxDistance, minDistance and distanceMultiplier
The existing implementation could also be marked as @depricated to prevent breaking changes.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
The geoNear aggregate stage should accept Doubles for its parameters maxDistance, minDistance and distanceMultiplier.
This way if you're doing any division for converting between units of distance it's not just rounded out to 0 and it looks like no documents match.
Describe the solution you'd like
Replace the
geoNear
aggregate stage to acceptDouble
s vsInt
formaxDistance
,minDistance
anddistanceMultiplier
The existing implementation could also be marked as
@depricated
to prevent breaking changes.The text was updated successfully, but these errors were encountered: