@zeepkist/graphql
    Preparing search index...

    Interface ZslSeasonResult

    interface ZslSeasonResult {
        nodeId: string;
        seasonId: number;
        userId: number;
        position: number;
        points: number;
        dateCreated: any;
        dateUpdated: any;
        zslSeason: null | ZslSeason;
        user: null | User;
        __typename: "ZslSeasonResult";
    }
    Index

    Properties

    nodeId: string

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

    seasonId: number
    userId: number
    position: number
    points: number
    dateCreated: any
    dateUpdated: any
    zslSeason: null | ZslSeason

    Reads a single ZslSeason that is related to this ZslSeasonResult.

    user: null | User

    Reads a single User that is related to this ZslSeasonResult.

    __typename: "ZslSeasonResult"