Class user(ndb.Model): def post(self): name = db.StringProperty() age = db.StringProperty() Class search(webapp2.RequestHandler): def post(self): x = userData.query().filter("age >=",1)
I get an error message: I can not filter the Node argument; got "age" = "
I follow the syntax specified at https://developers.google.com/appengine/docs/python/datastore/queries
Please let me know how to solve this problem.
python google-app-engine google-cloud-datastore
Krishna Chaitanya
source share