I have two kind like this:
class A(db.Model):
propertyA = db.XxxProperty(required=True)
class B(db.Model):
reference = db.ReferenceProperty(A,collection_name="Bs",required=True)
date = db.DateTimeProperty(auto_now_add=True)
Now I want make A.Bs has order, you konw, means using B.date to order A.Bs. How can I do that? What GQL query should I write?
Thank you!