# `Artefact.Graph`
[🔗](https://github.com/diffo-dev/artefactory/blob/v0.1.5/lib/artefact/graph.ex#L44)

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{...}, ...]
    }

# `t`

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

---

*Consult [api-reference.md](api-reference.md) for complete listing*
