@zeepkist/graphql
    Preparing search index...

    Interface ZslRoundResult

    interface ZslRoundResult {
        nodeId: string;
        roundId: number;
        userId: number;
        position: number;
        points: number;
        dateCreated: any;
        dateUpdated: any;
        zslRound: null | ZslRound;
        user: null | User;
        __typename: "ZslRoundResult";
    }
    Index

    Properties

    nodeId: string

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

    roundId: number
    userId: number
    position: number
    points: number
    dateCreated: any
    dateUpdated: any
    zslRound: null | ZslRound

    Reads a single ZslRound that is related to this ZslRoundResult.

    user: null | User

    Reads a single User that is related to this ZslRoundResult.

    __typename: "ZslRoundResult"