another option, if you have the flexibility in ter...
# orm-help
a
another option, if you have the flexibility in terms of how data gets into your database, would be to have some kind of search column that you set to `${firstName} ${lastName} when you're saving or updating data. And then you can do a full text search on that column, which Prisma supports with the fullTextSearch preview in Postgres/MySQL.
👀 1