@zeepkist/graphql
    Preparing search index...

    Interface FloatFilter

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

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

    Properties

    isNull?: boolean | null

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

    equalTo?: number | null

    Equal to the specified value.

    notEqualTo?: number | null

    Not equal to the specified value.

    distinctFrom?: number | null

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

    notDistinctFrom?: number | null

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

    in?: number[] | null

    Included in the specified list.

    notIn?: number[] | null

    Not included in the specified list.

    lessThan?: number | null

    Less than the specified value.

    lessThanOrEqualTo?: number | null

    Less than or equal to the specified value.

    greaterThan?: number | null

    Greater than the specified value.

    greaterThanOrEqualTo?: number | null

    Greater than or equal to the specified value.