-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Major - P3
-
None
-
Affects Version/s: None
-
Component/s: None
-
None
The CRUD spec specifies:
/** * Indicates whether the command will request that the server provide results using a cursor. * * If true, this option is sent with a value of "cursor: {}". The default value is true. * For servers < 2.6, this option is ignored and not sent as aggregation cursors are not available. * * @see https://docs.mongodb.com/manual/reference/command/aggregate/ */ useCursor: Optional<Boolean>;
The node driver does not follow this behavior, and it's become a problem because support was deprecated in version 3.4 of the server, and fully removed in 3.6.
This will have to be fixed for both the 2.x and 3.x branches of the node driver, with one behavioral change:
- 2.x will continue to massage the resulting cursor into the expected array form, so as not to break existing applications
- 3.x will simply always return an aggregation cursor