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
public class A { @Id @Field private String id; }
Get when usingTypedAggregation.project(A.class)
TypedAggregation.project(A.class)
{ "$project": { "_id": "1" } }
The correct result should be
{ "$project": { "_id": 1 } }
The text was updated successfully, but these errors were encountered:
Thanks for reporting!
Sorry, something went wrong.
7146fb3
Polishing.
bafc2be
Tweak Javadoc. See #3898 Original pull request: #3904.
Fix field inclusion in aggregation project operation.
ba2b65c
Closes #3898 Original pull request: #3904.
34a35bd
530912d
1e40448
christophstrobl
Successfully merging a pull request may close this issue.
Get when using
TypedAggregation.project(A.class)
The correct result should be
spring-data-mongodb version: 3.1.2
The text was updated successfully, but these errors were encountered: