How to perform case-insensitive filtering for inner collections using HotChocolate GraphQL query? #4643
Unanswered
arjundnair-fingent
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I have been trying a lot to find a solution for performing case-insensitive filtering on inner collection properties using HotChocolate GraphQL version 11. I got a method for configuring case-insensitive filtering but it only seems to work for main objects.
The link I referred to configure case-insensitive filtering:
Extending Filtering
This is my class structure:
Case-insensitive filter works fine with the
User
class but doesn't work when I try filtering on theAddresses
collection inside theUser
class like this:But works fine when query is like this:
How can I implement case-insensitive filtering for the inner nodes too? I used the exact same steps mentioned in the docs in the above given link, and it is from the official ChilliCream team. Please help me.
Beta Was this translation helpful? Give feedback.
All reactions