Artefact.Graph (Artefact v0.1.1)

Copy Markdown View Source

The property graph inside an %Artefact{} — a list of nodes and relationships.

Constructed directly when building artefacts from structs:

%Artefact.Graph{
  nodes: [%Artefact.Node{...}, ...],
  relationships: [%Artefact.Relationship{...}, ...]
}

Summary

Types

t()

@type t() :: %Artefact.Graph{
  nodes: [Artefact.Node.t()],
  relationships: [Artefact.Relationship.t()]
}