@zeepkist/graphql
    Preparing search index...

    Interface UserFilter

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

    interface UserFilter {
        id?: null | IntFilter;
        steamName?: null | StringFilter;
        banned?: null | BooleanFilter;
        dateCreated?: null | DatetimeFilter;
        dateUpdated?: null | DatetimeFilter;
        steamId?: null | BigFloatFilter;
        discordId?: null | BigFloatFilter;
        favoritesByIdUserList?: null | UserToManyFavoriteFilter;
        favoritesByIdUserListExist?: null | boolean;
        personalBestGlobalsByIdUserList?: null | UserToManyPersonalBestGlobalFilter;
        personalBestGlobalsByIdUserListExist?: null | boolean;
        userPointsByIdUserList?: null | UserToManyUserPointFilter;
        userPointsByIdUserListExist?: null | boolean;
        recordsByIdUserList?: null | UserToManyRecordFilter;
        recordsByIdUserListExist?: null | boolean;
        upvotesByIdUserList?: null | UserToManyUpvoteFilter;
        upvotesByIdUserListExist?: null | boolean;
        votesByIdUserList?: null | UserToManyVoteFilter;
        votesByIdUserListExist?: null | boolean;
        and?: null | UserFilter[];
        or?: null | UserFilter[];
        not?: null | UserFilter;
    }
    Index

    Properties

    id?: null | IntFilter

    Filter by the object’s id field.

    steamName?: null | StringFilter

    Filter by the object’s steamName field.

    banned?: null | BooleanFilter

    Filter by the object’s banned field.

    dateCreated?: null | DatetimeFilter

    Filter by the object’s dateCreated field.

    dateUpdated?: null | DatetimeFilter

    Filter by the object’s dateUpdated field.

    steamId?: null | BigFloatFilter

    Filter by the object’s steamId field.

    discordId?: null | BigFloatFilter

    Filter by the object’s discordId field.

    favoritesByIdUserList?: null | UserToManyFavoriteFilter

    Filter by the object’s favoritesByIdUserList relation.

    favoritesByIdUserListExist?: null | boolean

    Some related favoritesByIdUserList exist.

    personalBestGlobalsByIdUserList?: null | UserToManyPersonalBestGlobalFilter

    Filter by the object’s personalBestGlobalsByIdUserList relation.

    personalBestGlobalsByIdUserListExist?: null | boolean

    Some related personalBestGlobalsByIdUserList exist.

    userPointsByIdUserList?: null | UserToManyUserPointFilter

    Filter by the object’s userPointsByIdUserList relation.

    userPointsByIdUserListExist?: null | boolean

    Some related userPointsByIdUserList exist.

    recordsByIdUserList?: null | UserToManyRecordFilter

    Filter by the object’s recordsByIdUserList relation.

    recordsByIdUserListExist?: null | boolean

    Some related recordsByIdUserList exist.

    upvotesByIdUserList?: null | UserToManyUpvoteFilter

    Filter by the object’s upvotesByIdUserList relation.

    upvotesByIdUserListExist?: null | boolean

    Some related upvotesByIdUserList exist.

    votesByIdUserList?: null | UserToManyVoteFilter

    Filter by the object’s votesByIdUserList relation.

    votesByIdUserListExist?: null | boolean

    Some related votesByIdUserList exist.

    and?: null | UserFilter[]

    Checks for all expressions in this list.

    or?: null | UserFilter[]

    Checks for any expressions in this list.

    not?: null | UserFilter

    Negates the expression.