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('cities')
.select('name')
.limit(1);
final data = await supabase
.from('countries')
.select('''
name,
cities (
name
)
''')
.limit(1, referencedTable: 'cities');