[google-appengine] Re: Alternative to IN (Filter)

2020-05-11 Thread 'George (Cloud Platform Support)' via Google App Engine
You are right, Datastore allows querying on properties. Supported comparison operators are =, <, >, <=, and >=. "Not equal" and IN operators are currently not supported. This may change in future. You may check related detail on the Query

Re: [google-appengine] Re: Alternative to IN (Filter)

2020-05-10 Thread Joshua Smith
Do a whole lot of queries in tasks and collect the results together. That’s all an IN filter on a nosql dB would do behind the scenes anyway. If that doesn’t work for you get more clever in your schema to include something you can filter on to get you a superset. > On May 10, 2020, at 4:52

[google-appengine] Re: Alternative to IN (Filter)

2020-05-10 Thread hr lumiins
Hi Team, Can i can support from google cloud team or someone who can solve this issue. ? On Friday, May 8, 2020 at 10:28:40 PM UTC+2, Skm Villa wrote: > > Hi Team, > > My code : > > List cells; > return ofy().load().type(User.class).filter("geocells in", > cells).limit(50).list(); > > Error