Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Document(collection = "categories")
- @Getter
- @NoArgsConstructor
- @AllArgsConstructor
- public class CategoryEntity {
- @Id
- String id;
- String name;
- @DocumentReference(collection = "items", lookup = "{'category':?#{#self._id} }")
- List<? extends ItemEntity> items;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement