AshDiagram.Flowchart.Subgraph (AshDiagram v0.2.1)
View SourceRepresents a subgraph in a flowchart that can contain nodes, edges, and nested subgraphs.
Summary
Functions
Composes the Mermaid syntax for a subgraph.
Types
@type direction() :: :right_left | :left_right | :bottom_top | :top_bottom
@type t() :: %AshDiagram.Flowchart.Subgraph{ direction: direction() | nil, entries: [AshDiagram.Flowchart.Node.t() | AshDiagram.Flowchart.Edge.t() | t()], id: iodata(), label: iodata() | nil, style_class: iodata() | nil }