Limits the result with the specified count.
The maximum number of rows to return.
Set this to limit rows of referenced tables instead of the parent table.
final data = await supabase .from('instruments') .select('name') .limit(1);
final data = await supabase .from('orchestral_sections') .select(''' name, instruments ( name ) ''') .limit(1, referencedTable: 'instruments');