https://supabase.com/ logo
Hello guys, can i get some help on graphql querry ...
# help
m
Hello guys, can i get some help on graphql querry on my db ?
n
Hello @magicss! This thread has been automatically created from your message in #843999948717555735 a few seconds ago. We have already mentioned the @User so that they can see your message and help you as soon as possible! Want to unsubscribe from this thread? Right-click the thread in Discord (or use the ``...`` menu) and select "Leave Thread" to unsubscribe from future updates. Want to change the title? Use the ``/title`` command! We have solved your problem? Click the button below to archive it.
m
I'm trying to query my supabase db with graphql querys on postman
Get this error
but table "reunions" exist and get some atas
datas
Wanna know if we can acces to public shema table with graphql query ?
thanks a lot if you can help me
g
I don't use it, but I'm pretty sure it uses the public schema. You have to manually sync it I believe with
Copy code
select graphql.rebuild_schema()
Do you have RLS on? Is your table name all lower case like you use? Other than that I'm no help... Weekends tend to be slower around here, so hopefully someone familiar with the graphql interface drops by.
m
RLS is on sur
i tried to graphql rebuild
but not pinging my database
thats not really cool
g
Do you meet the RLS for select? Is Postman sending auth headers? Try with RLS off.
m
Probleme solved
i need to tag reunionsCollection
like this
Copy code
sql
query {
    reunionsCollection {
      edges {
        node {
          id
        }
      }
    }
  }