Match only rows where column is less than or equal to value.
column
value
The column to filter on
The value to filter with
const \{ data, error \} = await supabase .from('countries') .select() .lte('id', 2)