Type Alias Node

type Node = {
    label?: string;
    metadata?: {
        dataAsset?: DataAsset;
        fields?: number;
        filePath?: string;
        id: string;
        subtype?: string;
        tables?: number;
        type: string;
    };
}
Index

Properties

Properties

label?: string

Name label of the node.

metadata?: {
    dataAsset?: DataAsset;
    fields?: number;
    filePath?: string;
    id: string;
    subtype?: string;
    tables?: number;
    type: string;
}

This contains additional node information such as node types, subtypes, queryExpressions, etc.

Type declaration

  • OptionaldataAsset?: DataAsset

    The data integration data asset where the node belongs to

  • Optionalfields?: number

    The number of fields that are impacted. This will be returned as part of the response from /impact/{id}/overview and /impact/{id}/actions/expand on the table level.

  • OptionalfilePath?: string

    The file path of a node

  • id: string

    The id (QRI) of the node

  • Optionalsubtype?: string

    The subtype of the node.

  • Optionaltables?: number

    The number of tables that are impacted. This will be returned as part of the response from /impact/{id}/overview.

  • type: string

    The type of the node.