@zeepkist/graphql
    Preparing search index...

    Interface LevelPoint

    interface LevelPoint {
        nodeId: string;
        id: number;
        points: number;
        levelId: number;
        dateCreated: any;
        dateUpdated: any;
        rating: number;
        modifierLength: number;
        modifierCompetitiveness: number;
        modifierRating: number;
        modifierPopularity: number;
        cutPenalty: number;
        level: null | Level;
        __typename: "LevelPoint";
    }
    Index

    Properties

    nodeId: string

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

    id: number
    points: number
    levelId: number
    dateCreated: any
    dateUpdated: any
    rating: number
    modifierLength: number
    modifierCompetitiveness: number
    modifierRating: number
    modifierPopularity: number
    cutPenalty: number
    level: null | Level

    Reads a single Level that is related to this LevelPoint.

    __typename: "LevelPoint"