Trying to push through a prop to the .like filtering option in supabase function. Due to .like needing % in value, im not sure how to push the prop through. Please see below. I would like to have props.model?.name instead of ‘%Yeezy%’. I have tried adding in the prop like stated but does not work. Much appreciated. Answer Have you
Tag: supabase
How to pass params in Nuxt 3 server/api?
I can’t figure it out how to pass params to an anonymous function in Nuxt 3. index.vue: server/api/sign_up_news.js: working: Do you know how to pass parameter into Nuxt 3 server/api? Or do you got a source? The official docs are blank at this moment. Answer Use useBody Its mention in the docs: https://v3.nuxtjs.org/guide/features/server-routes#handling-requests-with-body you just need to read through
Is there a way to perform full text search on multiple columns on Supabase with Javascript?
I’ve tried using many symbols to separate columns; ||, |, &&, & with and without spaces. For instance And nothing has worked 🙁 Answer You could create a SQL function to perform search like this: You can call this function like this: You can read more about textSearch here