@zeepkist/graphql
    Preparing search index...

    Interface BigIntFilter

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

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

    Properties

    isNull?: null | boolean

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

    equalTo?: any

    Equal to the specified value.

    notEqualTo?: any

    Not equal to the specified value.

    distinctFrom?: any

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

    notDistinctFrom?: any

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

    in?: null | any[]

    Included in the specified list.

    notIn?: null | any[]

    Not included in the specified list.

    lessThan?: any

    Less than the specified value.

    lessThanOrEqualTo?: any

    Less than or equal to the specified value.

    greaterThan?: any

    Greater than the specified value.

    greaterThanOrEqualTo?: any

    Greater than or equal to the specified value.