# `DCATR.ManifestGraph`
[🔗](https://github.com/dcat-r/dcatr-ex/blob/v0.1.0/lib/dcatr/model/graph_types/manifest_graph.ex#L1)

Abstract base class for `DCATR.Graph`s containing DCAT-R configuration and catalog metadata.

Manifest graphs carry the configuration that defines the repository and service structure.
DCAT-R depends on this structure for proper operation. Two concrete subtypes exist:

- `DCATR.RepositoryManifestGraph` - distributed catalog description of the repository
- `DCATR.ServiceManifestGraph` - instance-local service configuration

# `t`

```elixir
@type t() :: %DCATR.ManifestGraph{__additional_statements__: term(), __id__: term()}
```

# `build`

# `build`

# `build!`

# `build!`

# `build_id`

# `from`

```elixir
@spec from(Grax.Schema.t()) :: {:ok, t()} | {:error, any()}
```

# `from!`

```elixir
@spec from!(Grax.Schema.t()) :: t()
```

# `load`

```elixir
@spec load(
  RDF.Graph.t() | RDF.Description.t(),
  RDF.IRI.coercible() | RDF.BlankNode.t(),
  opts :: keyword()
) :: {:ok, t()} | {:error, any()}
```

# `load!`

```elixir
@spec load!(
  RDF.Graph.t() | RDF.Description.t(),
  RDF.IRI.coercible() | RDF.BlankNode.t(),
  opts :: keyword()
) :: t()
```

# `new`

# `new!`

---

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