Details
-
New Feature
-
Resolution: Won't Fix
-
Major - P3
-
None
-
None
-
None
Description
One advantage of the new CRUD API in MongoCollection taking instances of Object (instead of Document) is that it can interpret String instances as JSON, which would allow usage like:
MongoCollection<Document> collection;
|
|
|
collection.find().filter("{filter: 2}") |
.sort("{name: 1}") |
.projection("{projection: 2}") |