I have a java class with a member:
@Entity
public class TypeA {
...
@Reference(lazy = true) private TypeB anObj;
...
}
Now when I do a datastore.find(TypeA.class).asList().get(0), the reference also gets loaded and I get the message "WARNING: Lazy loading impossible due to missing dependencies." logged to the console.
What are the dependencies I'm missing and how do I include them?