@zeepkist/graphql
    Preparing search index...

    Interface User

    interface User {
        nodeId: string;
        id: number;
        steamName: null | string;
        banned: boolean;
        dateCreated: any;
        dateUpdated: any;
        steamId: any;
        discordId: any;
        favoritesByIdUser: FavoritesConnection;
        personalBestGlobalsByIdUser: PersonalBestGlobalsConnection;
        userPointsByIdUser: UserPointsConnection;
        recordsByIdUser: RecordsConnection;
        upvotesByIdUser: UpvotesConnection;
        votesByIdUser: VotesConnection;
        __typename: "User";
    }
    Index

    Properties

    nodeId: string

    A globally unique identifier. Can be used in various places throughout the system to identify this single value.

    id: number
    steamName: null | string
    banned: boolean
    dateCreated: any
    dateUpdated: any
    steamId: any
    discordId: any
    favoritesByIdUser: FavoritesConnection

    Reads and enables pagination through a set of Favorite.

    personalBestGlobalsByIdUser: PersonalBestGlobalsConnection

    Reads and enables pagination through a set of PersonalBestGlobal.

    userPointsByIdUser: UserPointsConnection

    Reads and enables pagination through a set of UserPoint.

    recordsByIdUser: RecordsConnection

    Reads and enables pagination through a set of Record.

    upvotesByIdUser: UpvotesConnection

    Reads and enables pagination through a set of Upvote.

    votesByIdUser: VotesConnection

    Reads and enables pagination through a set of Vote.

    __typename: "User"