how to apply date filter on ancestor query
问题 I have two entity model Student and attendance such that each attendance entity has associated student parent. Attendance model: @Entity public class Attendance { @Id Long id; @Index Date date; @Parent @Index @ApiResourceProperty(ignored = AnnotationBoolean.TRUE) Ref<Student> studentRef; public Long getId() { return id; } public Date getDate() { return date; } public void setDate(Date date) { this.date = date; } public String getWebsafeKey() { return Key.create(studentRef.getKey(), Attendance