@zeepkist/graphql
    Preparing search index...

    Interface BooleanFilter

    A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’

    interface BooleanFilter {
        isNull?: boolean | null;
        equalTo?: boolean | null;
        notEqualTo?: boolean | null;
        distinctFrom?: boolean | null;
        notDistinctFrom?: boolean | null;
        in?: boolean[] | null;
        notIn?: boolean[] | null;
        lessThan?: boolean | null;
        lessThanOrEqualTo?: boolean | null;
        greaterThan?: boolean | null;
        greaterThanOrEqualTo?: boolean | null;
    }
    Index

    Properties

    isNull?: boolean | null

    Is null (if true is specified) or is not null (if false is specified).

    equalTo?: boolean | null

    Equal to the specified value.

    notEqualTo?: boolean | null

    Not equal to the specified value.

    distinctFrom?: boolean | null

    Not equal to the specified value, treating null like an ordinary value.

    notDistinctFrom?: boolean | null

    Equal to the specified value, treating null like an ordinary value.

    in?: boolean[] | null

    Included in the specified list.

    notIn?: boolean[] | null

    Not included in the specified list.

    lessThan?: boolean | null

    Less than the specified value.

    lessThanOrEqualTo?: boolean | null

    Less than or equal to the specified value.

    greaterThan?: boolean | null

    Greater than the specified value.

    greaterThanOrEqualTo?: boolean | null

    Greater than or equal to the specified value.