@zeepkist/graphql
    Preparing search index...

    Interface UserPointFilter

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

    interface UserPointFilter {
        id?: null | IntFilter;
        userId?: null | IntFilter;
        points?: null | IntFilter;
        dateCreated?: null | DatetimeFilter;
        dateUpdated?: null | DatetimeFilter;
        rank?: null | IntFilter;
        worldRecords?: null | IntFilter;
        user?: null | UserFilter;
        and?: null | UserPointFilter[];
        or?: null | UserPointFilter[];
        not?: null | UserPointFilter;
    }
    Index

    Properties

    id?: null | IntFilter

    Filter by the object’s id field.

    userId?: null | IntFilter

    Filter by the object’s userId field.

    points?: null | IntFilter

    Filter by the object’s points field.

    dateCreated?: null | DatetimeFilter

    Filter by the object’s dateCreated field.

    dateUpdated?: null | DatetimeFilter

    Filter by the object’s dateUpdated field.

    rank?: null | IntFilter

    Filter by the object’s rank field.

    worldRecords?: null | IntFilter

    Filter by the object’s worldRecords field.

    user?: null | UserFilter

    Filter by the object’s user relation.

    and?: null | UserPointFilter[]

    Checks for all expressions in this list.

    or?: null | UserPointFilter[]

    Checks for any expressions in this list.

    not?: null | UserPointFilter

    Negates the expression.