@zeepkist/graphql
    Preparing search index...

    Interface LevelItem

    interface LevelItem {
        nodeId: string;
        id: number;
        idLevel: number;
        workshopId: any;
        authorId: any;
        name: string;
        imageUrl: string;
        fileAuthor: string;
        fileUid: string;
        validationTimeAuthor: number;
        validationTimeGold: number;
        validationTimeSilver: number;
        validationTimeBronze: number;
        deleted: boolean;
        createdAt: any;
        updatedAt: any;
        dateCreated: any;
        dateUpdated: any;
        levelByIdLevel: null | Level;
        __typename: "LevelItem";
    }
    Index

    Properties

    nodeId: string

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

    id: number
    idLevel: number
    workshopId: any
    authorId: any
    name: string
    imageUrl: string
    fileAuthor: string
    fileUid: string
    validationTimeAuthor: number
    validationTimeGold: number
    validationTimeSilver: number
    validationTimeBronze: number
    deleted: boolean
    createdAt: any
    updatedAt: any
    dateCreated: any
    dateUpdated: any
    levelByIdLevel: null | Level

    Reads a single Level that is related to this LevelItem.

    __typename: "LevelItem"