@zeepkist/graphql
    Preparing search index...

    Interface LevelPointFilter

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

    interface LevelPointFilter {
        id?: null | IntFilter;
        points?: null | IntFilter;
        idLevel?: null | IntFilter;
        dateCreated?: null | DatetimeFilter;
        dateUpdated?: null | DatetimeFilter;
        levelByIdLevel?: null | LevelFilter;
        and?: null | LevelPointFilter[];
        or?: null | LevelPointFilter[];
        not?: null | LevelPointFilter;
    }
    Index

    Properties

    id?: null | IntFilter

    Filter by the object’s id field.

    points?: null | IntFilter

    Filter by the object’s points field.

    idLevel?: null | IntFilter

    Filter by the object’s idLevel field.

    dateCreated?: null | DatetimeFilter

    Filter by the object’s dateCreated field.

    dateUpdated?: null | DatetimeFilter

    Filter by the object’s dateUpdated field.

    levelByIdLevel?: null | LevelFilter

    Filter by the object’s levelByIdLevel relation.

    and?: null | LevelPointFilter[]

    Checks for all expressions in this list.

    or?: null | LevelPointFilter[]

    Checks for any expressions in this list.

    not?: null | LevelPointFilter

    Negates the expression.