@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?: boolean | null;
        equalTo?: string | null;
        notEqualTo?: string | null;
        distinctFrom?: string | null;
        notDistinctFrom?: string | null;
        in?: string[] | null;
        notIn?: string[] | null;
        lessThan?: string | null;
        lessThanOrEqualTo?: string | null;
        greaterThan?: string | null;
        greaterThanOrEqualTo?: string | null;
        includes?: string | null;
        notIncludes?: string | null;
        includesInsensitive?: string | null;
        notIncludesInsensitive?: string | null;
        startsWith?: string | null;
        notStartsWith?: string | null;
        startsWithInsensitive?: string | null;
        notStartsWithInsensitive?: string | null;
        endsWith?: string | null;
        notEndsWith?: string | null;
        endsWithInsensitive?: string | null;
        notEndsWithInsensitive?: string | null;
        like?: string | null;
        notLike?: string | null;
        likeInsensitive?: string | null;
        notLikeInsensitive?: string | null;
        equalToInsensitive?: string | null;
        notEqualToInsensitive?: string | null;
        distinctFromInsensitive?: string | null;
        notDistinctFromInsensitive?: string | null;
        inInsensitive?: string[] | null;
        notInInsensitive?: string[] | null;
        lessThanInsensitive?: string | null;
        lessThanOrEqualToInsensitive?: string | null;
        greaterThanInsensitive?: string | null;
        greaterThanOrEqualToInsensitive?: string | null;
    }
    Index

    Properties

    isNull?: boolean | null

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

    equalTo?: string | null

    Equal to the specified value.

    notEqualTo?: string | null

    Not equal to the specified value.

    distinctFrom?: string | null

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

    notDistinctFrom?: string | null

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

    in?: string[] | null

    Included in the specified list.

    notIn?: string[] | null

    Not included in the specified list.

    lessThan?: string | null

    Less than the specified value.

    lessThanOrEqualTo?: string | null

    Less than or equal to the specified value.

    greaterThan?: string | null

    Greater than the specified value.

    greaterThanOrEqualTo?: string | null

    Greater than or equal to the specified value.

    includes?: string | null

    Contains the specified string (case-sensitive).

    notIncludes?: string | null

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

    includesInsensitive?: string | null

    Contains the specified string (case-insensitive).

    notIncludesInsensitive?: string | null

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

    startsWith?: string | null

    Starts with the specified string (case-sensitive).

    notStartsWith?: string | null

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

    startsWithInsensitive?: string | null

    Starts with the specified string (case-insensitive).

    notStartsWithInsensitive?: string | null

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

    endsWith?: string | null

    Ends with the specified string (case-sensitive).

    notEndsWith?: string | null

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

    endsWithInsensitive?: string | null

    Ends with the specified string (case-insensitive).

    notEndsWithInsensitive?: string | null

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

    like?: string | null

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

    notLike?: string | null

    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?: string | null

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

    notLikeInsensitive?: string | null

    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?: string | null

    Equal to the specified value (case-insensitive).

    notEqualToInsensitive?: string | null

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

    distinctFromInsensitive?: string | null

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

    notDistinctFromInsensitive?: string | null

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

    inInsensitive?: string[] | null

    Included in the specified list (case-insensitive).

    notInInsensitive?: string[] | null

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

    lessThanInsensitive?: string | null

    Less than the specified value (case-insensitive).

    lessThanOrEqualToInsensitive?: string | null

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

    greaterThanInsensitive?: string | null

    Greater than the specified value (case-insensitive).

    greaterThanOrEqualToInsensitive?: string | null

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