@zeepkist/graphql
    Preparing search index...

    Interface ZslRound

    interface ZslRound {
        nodeId: string;
        id: number;
        seasonId: number;
        name: string;
        round: number;
        workshopId: any;
        eventDate: any;
        dateCreated: any;
        dateUpdated: any;
        zslSeason: null | ZslSeason;
        zslLevels: ZslLevelsConnection;
        zslRoundResults: ZslRoundResultsConnection;
        levelsByZslLevel: ZslRoundLevelsByZslLevelManyToManyConnection;
        usersByZslRoundResult: ZslRoundUsersByZslRoundResultManyToManyConnection;
        __typename: "ZslRound";
    }
    Index

    Properties

    nodeId: string

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

    id: number
    seasonId: number
    name: string
    round: number
    workshopId: any
    eventDate: any
    dateCreated: any
    dateUpdated: any
    zslSeason: null | ZslSeason

    Reads a single ZslSeason that is related to this ZslRound.

    Reads and enables pagination through a set of ZslLevel.

    zslRoundResults: ZslRoundResultsConnection

    Reads and enables pagination through a set of ZslRoundResult.

    Reads and enables pagination through a set of Level.

    Reads and enables pagination through a set of User.

    __typename: "ZslRound"