@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 | BigIntFilter;
        discordId?: null | BigIntFilter;
        favourites?: null | UserToManyFavouriteFilter;
        favouritesExist?: null | boolean;
        personalBestGlobals?: null | UserToManyPersonalBestGlobalFilter;
        personalBestGlobalsExist?: null | boolean;
        userPoints?: null | UserToManyUserPointFilter;
        userPointsExist?: null | boolean;
        records?: null | UserToManyRecordFilter;
        recordsExist?: null | boolean;
        worldRecordGlobals?: null | UserToManyWorldRecordGlobalFilter;
        worldRecordGlobalsExist?: null | boolean;
        votes?: null | UserToManyVoteFilter;
        votesExist?: null | boolean;
        userPointsHistories?: null | UserToManyUserPointsHistoryFilter;
        userPointsHistoriesExist?: 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 | BigIntFilter

    Filter by the object’s steamId field.

    discordId?: null | BigIntFilter

    Filter by the object’s discordId field.

    favourites?: null | UserToManyFavouriteFilter

    Filter by the object’s favourites relation.

    favouritesExist?: null | boolean

    Some related favourites exist.

    personalBestGlobals?: null | UserToManyPersonalBestGlobalFilter

    Filter by the object’s personalBestGlobals relation.

    personalBestGlobalsExist?: null | boolean

    Some related personalBestGlobals exist.

    userPoints?: null | UserToManyUserPointFilter

    Filter by the object’s userPoints relation.

    userPointsExist?: null | boolean

    Some related userPoints exist.

    records?: null | UserToManyRecordFilter

    Filter by the object’s records relation.

    recordsExist?: null | boolean

    Some related records exist.

    worldRecordGlobals?: null | UserToManyWorldRecordGlobalFilter

    Filter by the object’s worldRecordGlobals relation.

    worldRecordGlobalsExist?: null | boolean

    Some related worldRecordGlobals exist.

    votes?: null | UserToManyVoteFilter

    Filter by the object’s votes relation.

    votesExist?: null | boolean

    Some related votes exist.

    userPointsHistories?: null | UserToManyUserPointsHistoryFilter

    Filter by the object’s userPointsHistories relation.

    userPointsHistoriesExist?: null | boolean

    Some related userPointsHistories 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.