also, do we really need to use graphql with supaba...
# off-topic
c
also, do we really need to use graphql with supabase to query?
s
Not sure where the assumption came from, but you don't need to use graphql at all with Supabase, I've never used graphql with supabase at all.
c
great, thank you!
I was reading into some projects using Supabase and many of them were using graphql
is it posible to use sql queries with supabase client, anw?
s
No you cannot use sql queries directly as this would cause security issues. You can create functions or even create views which would have more complex SQL queries and then call them via the supabase client library
c
that makes sense, thank you!