I have 3 entities that have something in common.
@Entity
public class BaseEntity {
Date updatedAt;
}
@EntitySubclass
public class A extends BaseEntity {
String someData;
}
@EntitySubclass
public class B extends BaseEntity {
int someData;
}
@EntitySubclass
public class C extends BaseEntity {
boolean someData;
}
Can I make one query to create List<BaseEntity>
or Query<BaseEntity>
?
Supposedly something like this?
ofy().load().type(User.class).filter("updatedAt > ", someDate)
Actually, with Objectify I think you can. Here they give an example:
https://code.google.com/p/objectify-appengine/wiki/Entities#Polymorphism
I think the datastore can't do it natively, but Objectify will setup a structure for you that allows polymorphism anyway.