Skip to content Skip to sidebar Skip to footer

Queries With Empty Values From Parse.com

Somehow I couldn't find the answer to this. I am running a query to parse.com and want to download all of the rows that contain an empty value in one of my columns. ParseQuery<

Solution 1:

What you want are whereExists and whereDoesNotExist.

query.whereDoesNotExist("MyColumn");

Post a Comment for "Queries With Empty Values From Parse.com"