Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancement: Enhance query by using column values for comparision #2920

Open
florianbepunkt opened this issue Oct 24, 2016 · 1 comment
Open
Labels
type:feature New feature or improvement of existing feature

Comments

@florianbepunkt
Copy link

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');

@florianbepunkt florianbepunkt changed the title Enhance query by using column values for comparision Enhancement: Enhance query by using column values for comparision Oct 24, 2016
@jhamet93
Copy link

jhamet93 commented Feb 5, 2017

Since I've been using Parse Server, I decided to give this a shot as my first pull request and start contributing.

I'm curious on the expectations of this capability particularly when certain edge cases arise. For example, imagine query.equalTo('somefield', 'someOtherField') wants to return the documents whose 'somefield' and 'someOtherField' fields are equivalent. What if 'somefield' contains the literal value 'someOtherField' and that's actually what the users intention was to query for.

This is an edge case so I wasn't sure if that should be chalked up to a design issue by the user performing the query but was just curious based on the ideas I had at adding this capability and what situations could arise for making my test cases.

Thanks!

@mtrezza mtrezza added type:feature New feature or improvement of existing feature and removed type:improvement labels Dec 6, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type:feature New feature or improvement of existing feature
Projects
None yet
Development

No branches or pull requests

4 participants