The Redux representation of a directed graph state.

It has 3 fields:

  1. An ID
  2. A display name
  3. The graph data structure that stores all node/link information about this graph
interface Graph {
    createdOn?: Date;
    id?: number;
    lastUpdatedOn?: Date;
    links: Link[];
    name?: string;
    nodes: Node[];
}

Properties

createdOn?: Date
id?: number
lastUpdatedOn?: Date
links: Link[]
name?: string
nodes: Node[]

Generated using TypeDoc