We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Maybe I am missing something and this is already possible. What I want is essentially $filter=Property eq AnotherProperty.
$filter=Property eq AnotherProperty
This does not work: card: { author: { id: { eq: { creator: { id: {} } } } } }, it compiles to card/author/id eq creator=id=
card: { author: { id: { eq: { creator: { id: {} } } } } }
card/author/id eq creator=id=
I got it to work using a raw filter like so: card: { author: { id: { eq: { type: 'raw', value: 'creator/id' } } } }.
card: { author: { id: { eq: { type: 'raw', value: 'creator/id' } } } }
Would be nice if this was possible without using a raw filter.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Maybe I am missing something and this is already possible. What I want is essentially
$filter=Property eq AnotherProperty
.This does not work:
card: { author: { id: { eq: { creator: { id: {} } } } } }
, it compiles tocard/author/id eq creator=id=
I got it to work using a raw filter like so:
card: { author: { id: { eq: { type: 'raw', value: 'creator/id' } } } }
.Would be nice if this was possible without using a raw filter.
The text was updated successfully, but these errors were encountered: