How to query with a list object on repeated string property in ndb
问题 With google app engine, I use ndb to manange my data. I have a entity that use a repeated string property to save a list of string values. How can I query with a list object that is equal to the property value? What I meant is, the entity is class Question(ndb.Model): question = ndb.StringProperty(required=True) choices = ndb.StringProperty(repeated=True) and I want to query like this: question = "The question" choices = ["Choice1", "Choice2", ..., "Choice6"] Question.query(Question.question=