@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?: IntFilter | null;
        userId?: IntFilter | null;
        points?: IntFilter | null;
        dateCreated?: DatetimeFilter | null;
        dateUpdated?: DatetimeFilter | null;
        rank?: IntFilter | null;
        worldRecords?: IntFilter | null;
        totalPoints?: IntFilter | null;
        user?: UserFilter | null;
        and?: UserPointFilter[] | null;
        or?: UserPointFilter[] | null;
        not?: UserPointFilter | null;
    }
    Index

    Properties

    id?: IntFilter | null

    Filter by the object’s id field.

    userId?: IntFilter | null

    Filter by the object’s userId field.

    points?: IntFilter | null

    Filter by the object’s points field.

    dateCreated?: DatetimeFilter | null

    Filter by the object’s dateCreated field.

    dateUpdated?: DatetimeFilter | null

    Filter by the object’s dateUpdated field.

    rank?: IntFilter | null

    Filter by the object’s rank field.

    worldRecords?: IntFilter | null

    Filter by the object’s worldRecords field.

    totalPoints?: IntFilter | null

    Filter by the object’s totalPoints field.

    user?: UserFilter | null

    Filter by the object’s user relation.

    and?: UserPointFilter[] | null

    Checks for all expressions in this list.

    or?: UserPointFilter[] | null

    Checks for any expressions in this list.

    not?: UserPointFilter | null

    Negates the expression.