Contained by value
Only relevant for jsonb, array, and range columns. Match only rows where
every element appearing in column
is contained by value
.
Parameters
- columnREQUIREDstring
The jsonb, array, or range column to filter on
- valueREQUIREDobject
The jsonb, array, or range value to filter with
const { data, error } = await supabase
.from('classes')
.select('name')
.containedBy('days', ['monday', 'tuesday', 'wednesday', 'friday'])