@zeepkist/graphql
    Preparing search index...

    Interface StringFilter

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

    interface StringFilter {
        isNull?: null | boolean;
        equalTo?: null | string;
        notEqualTo?: null | string;
        distinctFrom?: null | string;
        notDistinctFrom?: null | string;
        in?: null | string[];
        notIn?: null | string[];
        lessThan?: null | string;
        lessThanOrEqualTo?: null | string;
        greaterThan?: null | string;
        greaterThanOrEqualTo?: null | string;
        includes?: null | string;
        notIncludes?: null | string;
        includesInsensitive?: null | string;
        notIncludesInsensitive?: null | string;
        startsWith?: null | string;
        notStartsWith?: null | string;
        startsWithInsensitive?: null | string;
        notStartsWithInsensitive?: null | string;
        endsWith?: null | string;
        notEndsWith?: null | string;
        endsWithInsensitive?: null | string;
        notEndsWithInsensitive?: null | string;
        like?: null | string;
        notLike?: null | string;
        likeInsensitive?: null | string;
        notLikeInsensitive?: null | string;
        equalToInsensitive?: null | string;
        notEqualToInsensitive?: null | string;
        distinctFromInsensitive?: null | string;
        notDistinctFromInsensitive?: null | string;
        inInsensitive?: null | string[];
        notInInsensitive?: null | string[];
        lessThanInsensitive?: null | string;
        lessThanOrEqualToInsensitive?: null | string;
        greaterThanInsensitive?: null | string;
        greaterThanOrEqualToInsensitive?: null | string;
    }
    Index

    Properties

    isNull?: null | boolean

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

    equalTo?: null | string

    Equal to the specified value.

    notEqualTo?: null | string

    Not equal to the specified value.

    distinctFrom?: null | string

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

    notDistinctFrom?: null | string

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

    in?: null | string[]

    Included in the specified list.

    notIn?: null | string[]

    Not included in the specified list.

    lessThan?: null | string

    Less than the specified value.

    lessThanOrEqualTo?: null | string

    Less than or equal to the specified value.

    greaterThan?: null | string

    Greater than the specified value.

    greaterThanOrEqualTo?: null | string

    Greater than or equal to the specified value.

    includes?: null | string

    Contains the specified string (case-sensitive).

    notIncludes?: null | string

    Does not contain the specified string (case-sensitive).

    includesInsensitive?: null | string

    Contains the specified string (case-insensitive).

    notIncludesInsensitive?: null | string

    Does not contain the specified string (case-insensitive).

    startsWith?: null | string

    Starts with the specified string (case-sensitive).

    notStartsWith?: null | string

    Does not start with the specified string (case-sensitive).

    startsWithInsensitive?: null | string

    Starts with the specified string (case-insensitive).

    notStartsWithInsensitive?: null | string

    Does not start with the specified string (case-insensitive).

    endsWith?: null | string

    Ends with the specified string (case-sensitive).

    notEndsWith?: null | string

    Does not end with the specified string (case-sensitive).

    endsWithInsensitive?: null | string

    Ends with the specified string (case-insensitive).

    notEndsWithInsensitive?: null | string

    Does not end with the specified string (case-insensitive).

    like?: null | string

    Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.

    notLike?: null | string

    Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.

    likeInsensitive?: null | string

    Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.

    notLikeInsensitive?: null | string

    Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.

    equalToInsensitive?: null | string

    Equal to the specified value (case-insensitive).

    notEqualToInsensitive?: null | string

    Not equal to the specified value (case-insensitive).

    distinctFromInsensitive?: null | string

    Not equal to the specified value, treating null like an ordinary value (case-insensitive).

    notDistinctFromInsensitive?: null | string

    Equal to the specified value, treating null like an ordinary value (case-insensitive).

    inInsensitive?: null | string[]

    Included in the specified list (case-insensitive).

    notInInsensitive?: null | string[]

    Not included in the specified list (case-insensitive).

    lessThanInsensitive?: null | string

    Less than the specified value (case-insensitive).

    lessThanOrEqualToInsensitive?: null | string

    Less than or equal to the specified value (case-insensitive).

    greaterThanInsensitive?: null | string

    Greater than the specified value (case-insensitive).

    greaterThanOrEqualToInsensitive?: null | string

    Greater than or equal to the specified value (case-insensitive).