Interface LinkedGraph

Used internally to represent a linked graph and related field mapping, properties and data.

Hierarchy

  • LinkedGraph

Properties

data: {
    [key: string]: any;
}

Data mapped onto the linked graph from the host graph

Type declaration

  • [key: string]: any
fields: {
    inputs: {
        [key: string]: FieldMap;
    };
    outputs: {
        [key: string]: FieldMap;
    };
}

Edges mapped onto the linked graph from the host graph

Type declaration

graph: Graph

Once loaded, this hold the linked graph

id: string

THe id of the linked graph

loaded: boolean

When loaded, this value is true, otherwise, it is false.

properties: {
    [key: string]: object;
}

Properties mapped onto the linked graph from the host graph

Type declaration

  • [key: string]: object
version: number

The version number of the linked graph

Generated using TypeDoc