Type Alias Graph

The lineage graph containing the node.

type Graph = {
    directed?: boolean;
    edges?: Edge[];
    label?: string;
    metadata?: {
        createdAt?: string;
        producerId?: string;
        producerType?: string;
        specVersion?: string;
        total?: number;
    };
    nodes?: Nodes;
    type?: string;
}
Index

Properties

directed?: boolean

Returns true if the graph is directed.

edges?: Edge[]
label?: string
metadata?: {
    createdAt?: string;
    producerId?: string;
    producerType?: string;
    specVersion?: string;
    total?: number;
}

Type Declaration

  • OptionalcreatedAt?: string

    The date and time when the graph is created.

  • OptionalproducerId?: string
  • OptionalproducerType?: string
  • OptionalspecVersion?: string
  • Optionaltotal?: number
nodes?: Nodes
type?: string