Hi all! I'm using these two models:<div><br></div><div><div>class Person(db.Entity):</div><div>    id = PrimaryKey(int, auto=True)</div><div>    checkouts = Set("Checkout")</div><div><br></div><div>    @property</div><div>    def recent_checkouts(self):</div><div>        # return 10 most recent checkouts</div><div>    </div><div><br></div><div>class Checkout(db.Entity):</div><div>    id = PrimaryKey(int, auto=True)</div><div>    person = Required(Person)</div><div>    date = Required(date)</div></div><div><br></div><div>I'd like to be able to call Person.recent_checkouts to get a list of that person's ten most recent checkouts. How would I accomplish this in the most performant manner?</div><div><br></div><div>Best,</div><div>Dylan Staley</div>