@zeepkist/graphql
    Preparing search index...

    Interface Favorite

    interface Favorite {
        nodeId: string;
        id: number;
        userId: number;
        dateCreated: any;
        dateUpdated: any;
        levelId: number;
        user: null | User;
        level: null | Level;
        __typename: "Favorite";
    }
    Index

    Properties

    nodeId: string

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

    id: number
    userId: number
    dateCreated: any
    dateUpdated: any
    levelId: number
    user: null | User

    Reads a single User that is related to this Favorite.

    level: null | Level

    Reads a single Level that is related to this Favorite.

    __typename: "Favorite"