# `Gno.Store.Adapters.Oxigraph`
[🔗](https://github.com/rdf-elixir/gno/blob/v0.1.0/lib/gno/store_adapters/oxigraph.ex#L1)

A `Gno.Store.Adapter` implementation for [Oxigraph](https://oxigraph.org/).

## Manifest Configuration

    @prefix gno:  <http://gno.app/> .
    @prefix gnoa: <http://gno.app/ns/adapter/> .

    <Oxigraph> a gnoa:Oxigraph
        ; gno:storeEndpointScheme "http"     # optional (default: "http")
        ; gno:storeEndpointHost "localhost"  # optional (default: "localhost")
        ; gno:storeEndpointPort 7878         # optional (default: 7878)
    .

# `t`

```elixir
@type t() :: %Gno.Store.Adapters.Oxigraph{
  __additional_statements__: term(),
  __id__: term(),
  default_graph_semantics_config: term(),
  graph_store_endpoint: term(),
  host: term(),
  port: term(),
  query_endpoint: term(),
  scheme: term(),
  update_endpoint: term(),
  userinfo: 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()
```

# `graph_semantics`

Returns the graph semantics for a specific adapter instance.

Checks the `default_graph_semantics_config` manifest property first,
falling back to `default_graph_semantics/0`.

# `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()
```

---

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