The maximum number of rows to return
Set this to limit rows of foreign tables instead of the parent table.
response = (
    supabase.table("planets")
    .select("name")
    .limit(1)
    .execute()
)
response = (
    supabase.table("orchestral_sections")
    .select("name, instruments(name)")
    .limit(1, foreign_table="instruments")
    .execute()
)