I have a model which looks like this:
class test (db.Model) :
tagList = StringListProperty()
siteName = StringProperty()
I am storing tags in "tagList" and would like to run a query where I can get all test entities containing a particular tag in their tagList.
Is this possible?