Lists all the files within a bucket.
buckets
table permissions: noneobjects
table permissions: select
The folder path.
undefined
response = (
supabase.storage
.from_("avatars")
.list(
"folder",
\{
"limit": 100,
"offset": 0,
"sortBy": \{"column": "name", "order": "desc"\},
\}
)
)
response = (
supabase.storage
.from_("avatars")
.list(
"folder",
\{
"limit": 100,
"offset": 0,
"sortBy": \{"column": "name", "order": "desc"\},
"search": "jon",
\}
)
)