Finds all rows whose value on the stated column is less than or equal to the specified value.
column
value
The column to filter on.
The value to filter with.
final data = await supabase .from('countries') .select() .lte('id', 2);