range()
queries to paginate through your data.select()
can be combined with Filtersselect()
can be combined with Modifiersapikey
is a reserved keyword if you're using the Supabase Platform and should be avoided as a column name.The columns to retrieve, defaults to `*`.
The property to use to get the count of rows returned.
response = supabase.table("countries").select("*").execute()
response = supabase.table("countries").select("name").execute()
response = supabase.table("countries").select("name, cities(name)").execute()
response = supabase.table("users").select("name, teams(name)").execute()
response = (
supabase.table("messages")
.select("content,from:sender_id(name),to:receiver_id(name)")
.execute()
)
response = (
supabase.table("cities")
.select("name, countries(*)")
.eq("countries.name", "Estonia")
.execute()
)
response = supabase.table("countries").select("*, cities(count)").execute()
response = supabase.table("countries").select("*", count="exact").execute()
response = supabase.table("users").select("id, name, address->city").execute()
response = (
supabase.table("cities")
.select("name, countries!inner(name)")
.eq("countries.name", "Indonesia")
.execute()
)
response = supabase.schema("myschema").table("mytable").select("*").execute()