@zeepkist/graphql
    Preparing search index...

    Interface RecordMedia

    interface RecordMedia {
        nodeId: string;
        id: number;
        recordId: number;
        ghostUrl: null | string;
        dateCreated: any;
        dateUpdated: any;
        record: null | Record;
        __typename: "RecordMedia";
    }
    Index

    Properties

    nodeId: string

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

    id: number
    recordId: number
    ghostUrl: null | string
    dateCreated: any
    dateUpdated: any
    record: null | Record

    Reads a single Record that is related to this RecordMedia.

    __typename: "RecordMedia"