Case-insensitive query to a Remote Schema? #10674
-
Details: |
Beta Was this translation helpful? Give feedback.
Answered by
robertjdominguez
Feb 7, 2025
Replies: 1 comment 1 reply
-
Hi, @MantisClone 👋 You can't use For case-insensitive filtering, you’ll have to rely on whatever filtering options the remote API provides. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
robertjdominguez
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, @MantisClone 👋
You can't use
_ilike
with a Remote Schema since Hasura doesn’t automatically apply database-specific operators to remote APIs. The_ilike
operator works with Postgres and BigQuery because Hasura translates it into a SQLILIKE
query, but Remote Schemas don’t go through that same transformation.For case-insensitive filtering, you’ll have to rely on whatever filtering options the remote API provides.