.nxl()
Finds all rows whose range value on the stated column
does not extend
to the left of the specified range
.
- JavaScript
- Python
const { data, error } = await supabase
.from('countries')
.select('name, id, population_range_millions')
.nxl('population_range_millions', [150, 250])
Parameters
columnrequiredobject
The column to filter on.
rangerequiredstring
The range to filter with.
Examples
select()
With - JavaScript
- Python
const { data, error } = await supabase
.from('countries')
.select('name, id, population_range_millions')
.nxl('population_range_millions', [150, 250])
update()
With - JavaScript
- Python
const { data, error } = await supabase
.from('countries')
.update({ name: 'Mordor' })
.nxl('population_range_millions', [150, 250])
delete()
With - JavaScript
- Python
const { data, error } = await supabase
.from('countries')
.delete()
.nxl('population_range_millions', [150, 250])
rpc()
With - JavaScript
- Python
// Only valid if the Stored Procedure returns a table type.
const { data, error } = await supabase
.rpc('echo_all_countries')
.nxl('population_range_millions', [150, 250])