Hi! Has anyone experienced the same using full-te...
# orm-help
p
Hi! Has anyone experienced the same using full-text search feature on Postgres? Search returns the following syntax error when the search term is more than 1 word.
r
Could you share your schema and search term? Or is it reproducible with any term having more than 1 word?
p
Its the same with any term.
r
Checking
p
Additional info, same error when the search is at the where
r
Seems like a bug. It would be great if you could create an issue here so that we can fix this 🙂
p
Thanks, i will do! I also have an another question. Possible to ask here?
r
Sure!
p
I have used Prisma 1.36 before and prisma-binding, i am wondering is there a practice to implement the fieldName_contains, fieldName_gte, fieldName_not, etc operators, into my new prisma client 3.5 codefirst resolvers?
r
Yes you can implement this using the library that we created to smoothen the upgrade process.
p
Wow, thanks i am going to check! At the other hand i consider to write my input types as the way to accept these arguments as the prisma way. Is there an exapmle out there how to do this?