We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
All commands that support a projection clause must support the following:
projection
If the projection field is present, but is not a JSON object (e.g. {"projection" : "yes please :)"}) the service should return an error.
{"projection" : "yes please :)"
See this usecase form the client stargate/stargate-mongoose#18 (reply in thread)
The text was updated successfully, but these errors were encountered:
Fix #158: support empty Projection clause; add full decoding of proje…
7870162
…ction definition (but not yet processing) (#286)
find()
findOne()
findOneAndUpdate()
Fix remaining gap in #158, connect findOneAndUpdate() to projection (#…
328cc43
…301)
tatu-at-datastax
Successfully merging a pull request may close this issue.
All commands that support a
projection
clause must support the following:projection
field not present in the command JSON objectprojection
field present, but an empty JSON object.If the
projection
field is present, but is not a JSON object (e.g.{"projection" : "yes please :)"
}) the service should return an error.See this usecase form the client stargate/stargate-mongoose#18 (reply in thread)
The text was updated successfully, but these errors were encountered: