@comunica/actor-dereference-rdf-parse
v4.0.2
Published
A parse dereference-rdf actor
Downloads
13,463
Readme
Comunica Dereference RDF Parse Actor
An dereference rdf actor for dereferencing a path or URL into a parsed stream of quads.
This module is part of the Comunica framework, and should only be used by developers that want to build their own query engine.
Click here if you just want to query with Comunica.
Install
$ yarn add @comunica/actor-dereference-rdf-parse
Configure
After installing, this package can be added to your engine's configuration as follows:
{
"@context": [
...
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-dereference-rdf-parse/^4.0.0/components/context.jsonld"
],
"actors": [
...
{
"@id": "urn:comunica:default:dereference-rdf/actors#parse",
"@type": "ActorDereferenceRdfParse",
"mediatorDereference": { "@id": "urn:comunica:default:dereference/mediators#main" },
"mediatorParse": { "@id": "urn:comunica:default:rdf-parse/mediators#main" }
}
]
}
Config Parameters
mediatorDereference
: A mediator over the Dereference bus.mediatorParse
: A mediator over the RDF Parse bus.