@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?: null | boolean;
        equalTo?: any;
        notEqualTo?: any;
        distinctFrom?: any;
        notDistinctFrom?: any;
        in?: null | any[];
        notIn?: null | any[];
        lessThan?: any;
        lessThanOrEqualTo?: any;
        greaterThan?: any;
        greaterThanOrEqualTo?: any;
        contains?: any;
        containsKey?: null | string;
        containsAllKeys?: null | string[];
        containsAnyKeys?: null | string[];
        containedBy?: 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.

    contains?: any

    Contains the specified JSON.

    containsKey?: null | string

    Contains the specified key.

    containsAllKeys?: null | string[]

    Contains all of the specified keys.

    containsAnyKeys?: null | string[]

    Contains any of the specified keys.

    containedBy?: any

    Contained by the specified JSON.