You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the storage guide there is a storage.objects table. I expected to be able to fetch data from it (with appropriate RLS), however I am getting the error:
PostgrestError(details: nil, hint: nil, code: Optional("42P01"), message: "relation \"public.storage.objects\" does not exist")
To Reproduce
I am using the following code:
let result = try await supabaseClient.database
.from("storage.objects")
.select()
.eq("name", value: "path_that_exists")
.execute()
Expected behavior
Should we be able to query storage.objects? I took the idea from here: supabase/storage#266
The text was updated successfully, but these errors were encountered:
Bug report
Describe the bug
https://supabase.com/docs/guides/storage/security/access-control
According to the storage guide there is a storage.objects table. I expected to be able to fetch data from it (with appropriate RLS), however I am getting the error:
To Reproduce
I am using the following code:
Expected behavior
Should we be able to query storage.objects? I took the idea from here: supabase/storage#266
The text was updated successfully, but these errors were encountered: