Morphia query should also return Documents / json and not just mapped objects. #3156
SOCRATESZZ
started this conversation in
General
Replies: 1 comment
-
The |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Example:
I have an Book entity. it has
class Book {
String id;
String author;
int price;
Date manufacturingDate;
.
.
.
}
when I am trying to query using Projections.include(id, author). It gives me entire Book object with id and author intitialized and other fields set to null.
(Actual Problem)
Beta Was this translation helpful? Give feedback.
All reactions