Interface ArrayFilterOps<Elem>

Represents filter operations exclusive to array (or dynamically typed) fields

interface ArrayFilterOps<Elem> {
    $all?: Elem;
    $size?: number;
}

Type Parameters

  • Elem

Properties

Properties

$all?: Elem

Checks if the array contains all the specified elements.

$size?: number

Checks if the array is of a certain size.