@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?: null | boolean;
        equalTo?: null | boolean;
        notEqualTo?: null | boolean;
        distinctFrom?: null | boolean;
        notDistinctFrom?: null | boolean;
        in?: null | boolean[];
        notIn?: null | boolean[];
        lessThan?: null | boolean;
        lessThanOrEqualTo?: null | boolean;
        greaterThan?: null | boolean;
        greaterThanOrEqualTo?: null | boolean;
    }
    Index

    Properties

    isNull?: null | boolean

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

    equalTo?: null | boolean

    Equal to the specified value.

    notEqualTo?: null | boolean

    Not equal to the specified value.

    distinctFrom?: null | boolean

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

    notDistinctFrom?: null | boolean

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

    in?: null | boolean[]

    Included in the specified list.

    notIn?: null | boolean[]

    Not included in the specified list.

    lessThan?: null | boolean

    Less than the specified value.

    lessThanOrEqualTo?: null | boolean

    Less than or equal to the specified value.

    greaterThan?: null | boolean

    Greater than the specified value.

    greaterThanOrEqualTo?: null | boolean

    Greater than or equal to the specified value.