Python: Limit the number of rows returned

Parameters

Examples

With `select()`

response = supabase.table("planets").select("name").limit(1).execute()

On a foreign table

response = (
    supabase.table("orchestral_sections")
    .select("name, instruments(name)")
    .limit(1, foreign_table="instruments")
    .execute()
)