@zeepkist/graphql
    Preparing search index...

    Interface FloatListFilter

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

    interface FloatListFilter {
        isNull?: boolean | null;
        equalTo?: (number | null)[] | null;
        notEqualTo?: (number | null)[] | null;
        distinctFrom?: (number | null)[] | null;
        notDistinctFrom?: (number | null)[] | null;
        lessThan?: (number | null)[] | null;
        lessThanOrEqualTo?: (number | null)[] | null;
        greaterThan?: (number | null)[] | null;
        greaterThanOrEqualTo?: (number | null)[] | null;
        contains?: (number | null)[] | null;
        containedBy?: (number | null)[] | null;
        overlaps?: (number | null)[] | null;
        anyEqualTo?: number | null;
        anyNotEqualTo?: number | null;
        anyLessThan?: number | null;
        anyLessThanOrEqualTo?: number | null;
        anyGreaterThan?: number | null;
        anyGreaterThanOrEqualTo?: number | null;
    }
    Index

    Properties

    isNull?: boolean | null

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

    equalTo?: (number | null)[] | null

    Equal to the specified value.

    notEqualTo?: (number | null)[] | null

    Not equal to the specified value.

    distinctFrom?: (number | null)[] | null

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

    notDistinctFrom?: (number | null)[] | null

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

    lessThan?: (number | null)[] | null

    Less than the specified value.

    lessThanOrEqualTo?: (number | null)[] | null

    Less than or equal to the specified value.

    greaterThan?: (number | null)[] | null

    Greater than the specified value.

    greaterThanOrEqualTo?: (number | null)[] | null

    Greater than or equal to the specified value.

    contains?: (number | null)[] | null

    Contains the specified list of values.

    containedBy?: (number | null)[] | null

    Contained by the specified list of values.

    overlaps?: (number | null)[] | null

    Overlaps the specified list of values.

    anyEqualTo?: number | null

    Any array item is equal to the specified value.

    anyNotEqualTo?: number | null

    Any array item is not equal to the specified value.

    anyLessThan?: number | null

    Any array item is less than the specified value.

    anyLessThanOrEqualTo?: number | null

    Any array item is less than or equal to the specified value.

    anyGreaterThan?: number | null

    Any array item is greater than the specified value.

    anyGreaterThanOrEqualTo?: number | null

    Any array item is greater than or equal to the specified value.