Consider the class:
class Person {
String name;
Person father;
Person mother;
List<Person> children;
}
Is there a way to indicate to jongo that father, mother and children should be manual references to other objects within the same collection instead of embedded objects?
Note: this is different from DBRefs.