Open
Description
It would greatly enhance parse-server's query capabilities if it would be possible to use column values for comparison in querys.
Right now we can only compare a column against a fixed value like so
query.greaterThan('movieRating', 5);
In a lot of use cases it would help to compare it against another column value like this
query.greaterThan('movieRating', 'anotherFieldInThisRow');