@zeepkist/graphql
    Preparing search index...

    Interface ZslLevel

    interface ZslLevel {
        nodeId: string;
        id: number;
        roundId: number;
        levelId: number;
        dateCreated: any;
        dateUpdated: any;
        zslRound: null | ZslRound;
        level: null | Level;
        zslLevelResults: ZslLevelResultsConnection;
        usersByZslLevelResult: ZslLevelUsersByZslLevelResultManyToManyConnection;
        recordsByZslLevelResult: ZslLevelRecordsByZslLevelResultManyToManyConnection;
        __typename: "ZslLevel";
    }
    Index

    Properties

    nodeId: string

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

    id: number
    roundId: number
    levelId: number
    dateCreated: any
    dateUpdated: any
    zslRound: null | ZslRound

    Reads a single ZslRound that is related to this ZslLevel.

    level: null | Level

    Reads a single Level that is related to this ZslLevel.

    zslLevelResults: ZslLevelResultsConnection

    Reads and enables pagination through a set of ZslLevelResult.

    Reads and enables pagination through a set of User.

    Reads and enables pagination through a set of Record.

    __typename: "ZslLevel"