Replies: 2 comments
-
+1 |
Beta Was this translation helpful? Give feedback.
0 replies
-
Maybe this resource helps you? https://hasura.io/blog/full-text-search-with-hasura-graphql-api-postgres/ |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want to search name or surname with contains searchText :
$search=> "%Mike Adam%"
example:
_or: [{ name | ' ' | surname : { _ilike: $search } }]
Just I can do this:
_or: [{ name: { _ilike: $search } }, { surname: { _ilike: $search } }]
Can you help me ? is there solution without postresql function?
Beta Was this translation helpful? Give feedback.
All reactions