@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?: IntFilter | null;
        steamName?: StringFilter | null;
        banned?: BooleanFilter | null;
        dateCreated?: DatetimeFilter | null;
        dateUpdated?: DatetimeFilter | null;
        steamId?: BigIntFilter | null;
        discordId?: BigIntFilter | null;
        favourites?: UserToManyFavouriteFilter | null;
        favouritesExist?: boolean | null;
        personalBestGlobals?: UserToManyPersonalBestGlobalFilter | null;
        personalBestGlobalsExist?: boolean | null;
        userPoints?: UserToManyUserPointFilter | null;
        userPointsExist?: boolean | null;
        records?: UserToManyRecordFilter | null;
        recordsExist?: boolean | null;
        userPointsHistories?: UserToManyUserPointsHistoryFilter | null;
        userPointsHistoriesExist?: boolean | null;
        votes?: UserToManyVoteFilter | null;
        votesExist?: boolean | null;
        worldRecordGlobals?: UserToManyWorldRecordGlobalFilter | null;
        worldRecordGlobalsExist?: boolean | null;
        zslLevelResults?: UserToManyZslLevelResultFilter | null;
        zslLevelResultsExist?: boolean | null;
        zslRoundResults?: UserToManyZslRoundResultFilter | null;
        zslRoundResultsExist?: boolean | null;
        zslSeasonResults?: UserToManyZslSeasonResultFilter | null;
        zslSeasonResultsExist?: boolean | null;
        and?: UserFilter[] | null;
        or?: UserFilter[] | null;
        not?: UserFilter | null;
    }
    Index

    Properties

    id?: IntFilter | null

    Filter by the object’s id field.

    steamName?: StringFilter | null

    Filter by the object’s steamName field.

    banned?: BooleanFilter | null

    Filter by the object’s banned field.

    dateCreated?: DatetimeFilter | null

    Filter by the object’s dateCreated field.

    dateUpdated?: DatetimeFilter | null

    Filter by the object’s dateUpdated field.

    steamId?: BigIntFilter | null

    Filter by the object’s steamId field.

    discordId?: BigIntFilter | null

    Filter by the object’s discordId field.

    favourites?: UserToManyFavouriteFilter | null

    Filter by the object’s favourites relation.

    favouritesExist?: boolean | null

    Some related favourites exist.

    personalBestGlobals?: UserToManyPersonalBestGlobalFilter | null

    Filter by the object’s personalBestGlobals relation.

    personalBestGlobalsExist?: boolean | null

    Some related personalBestGlobals exist.

    userPoints?: UserToManyUserPointFilter | null

    Filter by the object’s userPoints relation.

    userPointsExist?: boolean | null

    Some related userPoints exist.

    records?: UserToManyRecordFilter | null

    Filter by the object’s records relation.

    recordsExist?: boolean | null

    Some related records exist.

    userPointsHistories?: UserToManyUserPointsHistoryFilter | null

    Filter by the object’s userPointsHistories relation.

    userPointsHistoriesExist?: boolean | null

    Some related userPointsHistories exist.

    votes?: UserToManyVoteFilter | null

    Filter by the object’s votes relation.

    votesExist?: boolean | null

    Some related votes exist.

    worldRecordGlobals?: UserToManyWorldRecordGlobalFilter | null

    Filter by the object’s worldRecordGlobals relation.

    worldRecordGlobalsExist?: boolean | null

    Some related worldRecordGlobals exist.

    zslLevelResults?: UserToManyZslLevelResultFilter | null

    Filter by the object’s zslLevelResults relation.

    zslLevelResultsExist?: boolean | null

    Some related zslLevelResults exist.

    zslRoundResults?: UserToManyZslRoundResultFilter | null

    Filter by the object’s zslRoundResults relation.

    zslRoundResultsExist?: boolean | null

    Some related zslRoundResults exist.

    zslSeasonResults?: UserToManyZslSeasonResultFilter | null

    Filter by the object’s zslSeasonResults relation.

    zslSeasonResultsExist?: boolean | null

    Some related zslSeasonResults exist.

    and?: UserFilter[] | null

    Checks for all expressions in this list.

    or?: UserFilter[] | null

    Checks for any expressions in this list.

    not?: UserFilter | null

    Negates the expression.