@zeepkist/graphql
    Preparing search index...

    Interface JSONFilter

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

    interface JSONFilter {
        isNull?: boolean | null;
        equalTo?: any;
        notEqualTo?: any;
        distinctFrom?: any;
        notDistinctFrom?: any;
        in?: any[] | null;
        notIn?: any[] | null;
        lessThan?: any;
        lessThanOrEqualTo?: any;
        greaterThan?: any;
        greaterThanOrEqualTo?: any;
        contains?: any;
        containsKey?: string | null;
        containsAllKeys?: string[] | null;
        containsAnyKeys?: string[] | null;
        containedBy?: any;
    }
    Index

    Properties

    isNull?: boolean | null

    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?: any[] | null

    Included in the specified list.

    notIn?: any[] | null

    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.

    contains?: any

    Contains the specified JSON.

    containsKey?: string | null

    Contains the specified key.

    containsAllKeys?: string[] | null

    Contains all of the specified keys.

    containsAnyKeys?: string[] | null

    Contains any of the specified keys.

    containedBy?: any

    Contained by the specified JSON.