how do i query for a list of entities where a certain field of those entities is or (as shown in the datastore viewer).
Query query = pm.newQuery(DataObject.class, "this.SomeString == null");
The above code is not working for me, albeit there are entities in the datastore for which SomeString is either or when looking at the entities with the datastore viewer.
You can’t query for missing values. From Restrictions on Queries:
You can filter by
null, however, so that part of your query should be working.