View Source Fountainedge.Schema (Fountainedge Workflow Engine v1.0.8)

The schema models the underlying stateless structure of a workflow as a graph consisting of nodes and edges.

Link to this section Summary

Types

t()

Schema structure.

Link to this section Types

@type t() :: %Fountainedge.Schema{
  edges: [Fountainedge.Edge.t()],
  nodes: [Fountainedge.Node.t()]
}

Schema structure.

  • :nodes - List of nodes.
  • :edges - List of edges.