hey guys, quick question, regarding search in a Pr...
# orm-help
r
hey guys, quick question, regarding search in a Prisma/Yoga powered app, is there a way to use full text search yet when using a postgres db? And is there any update on a Elastic Search implementation?
d
For now, you can bypass Prisma binding/client in GraphQL resolvers and implement elastic search query using an elastic search SDK. Also, you can use this issue to track the progress of elastic search connector: https://github.com/prisma/prisma/issues/1665
r
thanks for the reply, how difficult would it be to do this?
n
try it out, then you'll know 😄 it's not a question that has a reasonable answer simple smile
r
alright! Can you tell us if the implementation of the elastic search connector is still on track for Q4 then?
n
Work on the elastic search connector hasn't started yet so it's difficult to say
s
I think you mitgh have a chance with postgres full text search and executeRaw queries in prisma (undocumented yet) too https://www.postgresql.org/docs/9.5/static/textsearch.html
👍 1