Filter map keyed by column key.
Supports logical combinations:
{ status: 'active', price: { op: 'lte', value: 25 } }
$or
{ $or: [{ status: 'active' }, { status: 'pending' }] }
{ $or: [{ status: 'active' }, { status: 'pending' }], price: { op: 'gt', value: 0 } }
Optional
OR group: rows matching any condition in the array.
Filter map keyed by column key.
Supports logical combinations:
{ status: 'active', price: { op: 'lte', value: 25 } }$orarray{ $or: [{ status: 'active' }, { status: 'pending' }] }{ $or: [{ status: 'active' }, { status: 'pending' }], price: { op: 'gt', value: 0 } }