@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?: null | boolean;
        equalTo?: null | (null | number)[];
        notEqualTo?: null | (null | number)[];
        distinctFrom?: null | (null | number)[];
        notDistinctFrom?: null | (null | number)[];
        lessThan?: null | (null | number)[];
        lessThanOrEqualTo?: null | (null | number)[];
        greaterThan?: null | (null | number)[];
        greaterThanOrEqualTo?: null | (null | number)[];
        contains?: null | (null | number)[];
        containedBy?: null | (null | number)[];
        overlaps?: null | (null | number)[];
        anyEqualTo?: null | number;
        anyNotEqualTo?: null | number;
        anyLessThan?: null | number;
        anyLessThanOrEqualTo?: null | number;
        anyGreaterThan?: null | number;
        anyGreaterThanOrEqualTo?: null | number;
    }
    Index

    Properties

    isNull?: null | boolean

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

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

    Equal to the specified value.

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

    Not equal to the specified value.

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

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

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

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

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

    Less than the specified value.

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

    Less than or equal to the specified value.

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

    Greater than the specified value.

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

    Greater than or equal to the specified value.

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

    Contains the specified list of values.

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

    Contained by the specified list of values.

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

    Overlaps the specified list of values.

    anyEqualTo?: null | number

    Any array item is equal to the specified value.

    anyNotEqualTo?: null | number

    Any array item is not equal to the specified value.

    anyLessThan?: null | number

    Any array item is less than the specified value.

    anyLessThanOrEqualTo?: null | number

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

    anyGreaterThan?: null | number

    Any array item is greater than the specified value.

    anyGreaterThanOrEqualTo?: null | number

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