Only relevant for jsonb, array, and range columns. Match only rows where every element appearing in column
is contained by value
.
The jsonb, array, or range column to filter on.
The jsonb, array, or range value to filter with.
final data = await supabase
.from('classes')
.select('name')
.containedBy('days', ['monday', 'tuesday', 'wednesday', 'friday']);
final data = await supabase
.from('reservations')
.select()
.containedBy('during', '[2000-01-01 00:00, 2000-01-01 23:59)');
final data = await supabase
.from('users')
.select('name')
.containedBy('address', \{'postcode': 90210\});