.ov()
Finds all rows whose array or range value on the stated column
is
contained by the specified value
.
- JavaScript
- Python
const { data, error } = await supabase
.from('countries')
.select('name, id, main_exports')
.ova('main_exports', ['computers', 'minerals'])
Parameters
columnrequiredobject
The column to filter on.
valuerequired|
The value to filter with.
Examples
select()
With - JavaScript
- Python
const { data, error } = await supabase
.from('countries')
.select('name, id, main_exports')
.ova('main_exports', ['computers', 'minerals'])
update()
With - JavaScript
- Python
let countries = await supabase
.from('countries')
.update({ name: 'Mordor' })
.ova('main_exports', ['computers', 'minerals'])
delete()
With - JavaScript
- Python
const { data, error } = await supabase
.from('countries')
.delete()
.ova('main_exports', ['computers', 'minerals'])
rpc()
With - JavaScript
- Python
// Only valid if the Stored Procedure returns a table type.
const { data, error } = await supabase
.rpc('echo_all_countries')
.ova('main_exports', ['computers', 'minerals'])