@comunica/actor-rdf-update-quads-rdfjs-store
Version:
A rdfjs-store rdf-update-quads actor
39 lines (29 loc) • 1.29 kB
Markdown
# Comunica RDFJS Store RDF Update Quads Actor
[](https://www.npmjs.com/package/@comunica/actor-rdf-update-quads-rdfjs-store)
An [RDF Update Quads](https://github.com/comunica/comunica/tree/master/packages/bus-rdf-update-quads) actor
that handles [RDF/JS Stores](https://comunica.dev/docs/query/advanced/rdfjs_querying/).
RDF/JS Stores are assumed to not record empty graphs.
This module is part of the [Comunica framework](https://github.com/comunica/comunica),
and should only be used by [developers that want to build their own query engine](https://comunica.dev/docs/modify/).
[Click here if you just want to query with Comunica](https://comunica.dev/docs/query/).
## Install
```bash
$ yarn add @comunica/actor-rdf-update-quads-rdfjs-store
```
## Configure
After installing, this package can be added to your engine's configuration as follows:
```text
{
"@context": [
...
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-rdf-update-quads-rdfjs-store/^4.0.0/components/context.jsonld"
],
"actors": [
...
{
"@id": "urn:comunica:default:rdf-update-quads/actors#rdfjs-store",
"@type": "ActorRdfUpdateQuadsRdfJsStore"
}
]
}
```