Javascript Reference v1.0

Contained by value

Finds all rows whose json, array, or range value on the stated column is contained by the specified value.

  • .containedBy() can work on array columns or range columns.

    1.containedBy('arraycol',["a","b"]) // You can use a javascript array for an array column
    2.containedBy('arraycol','{"a","b"}') // You can use a string with Postgres array {} for array column.
    3.containedBy('rangecol','(1,2]') // Use Postgres range syntax for range column.
    4.containedBy('rangecol',`(${arr}]`) // You can insert an array into a string.
Parameters
    column
    REQUIRED
    object

    The column to filter on.

    value
    REQUIRED
    object

    The value to filter with.


const { data, error } = await supabase
  .from('countries')
  .select('name, id, main_exports')
  .containedBy('main_exports', ['cars', 'food', 'machine'])