-
Hello again! I'm trying to make a "smart search" where, using a single term in a single query, replies with all the similar results. Let's suppose we have this schema: And I want to get results based on its name, brand or services. The query would be something like this: It does work! Cool and all, however, this search is not case insensitive, so its application is a bit janky. How should I approach this? Regards! |
Beta Was this translation helpful? Give feedback.
Answered by
adas98012
Oct 5, 2022
Replies: 1 comment
-
You can use "_ilike" operator instead of "_similar": Here is a sample query and response:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
adas98012
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use "_ilike" operator instead of "_similar":
Reference
Here is a sample query and response: