@zeepkist/graphql
    Preparing search index...

    Interface ZslSeason

    interface ZslSeason {
        nodeId: string;
        id: number;
        pointsStructureId: number;
        name: string;
        startDate: any;
        endDate: any;
        dateCreated: any;
        dateUpdated: any;
        zslPointsStructure: null | ZslPointsStructure;
        zslRounds: ZslRoundsConnection;
        zslSeasonResults: ZslSeasonResultsConnection;
        usersByZslSeasonResult: ZslSeasonUsersByZslSeasonResultManyToManyConnection;
        __typename: "ZslSeason";
    }
    Index

    Properties

    nodeId: string

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

    id: number
    pointsStructureId: number
    name: string
    startDate: any
    endDate: any
    dateCreated: any
    dateUpdated: any
    zslPointsStructure: null | ZslPointsStructure

    Reads a single ZslPointsStructure that is related to this ZslSeason.

    Reads and enables pagination through a set of ZslRound.

    zslSeasonResults: ZslSeasonResultsConnection

    Reads and enables pagination through a set of ZslSeasonResult.

    Reads and enables pagination through a set of User.

    __typename: "ZslSeason"