greaterThan or null

We have deletedAt column in some collection, so in query we would like to get all the entries with deletedAt greater than some date or null.
Simply if we have something like greatherThanOrNull.
Is there a way to do it without Parse.Query.or ?

I think an or query is the only way to go…

Thanks, another way is to fill deletedAt with some max available date in the future and then just compare it.

1 Like