Home

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
  • column
    REQUIRED
    string

    The jsonb, array, or range column to filter on

  • value
    REQUIRED
    object

    The jsonb, array, or range value to filter with


const { data, error } = await supabase
  .from('classes')
  .select('name')
  .containedBy('days', ['monday', 'tuesday', 'wednesday', 'friday'])