@comunica/actor-dereference-fallback
v4.0.2
Published
A fallback dereference actor
Downloads
13,403
Readme
Comunica Fallback Dereference Actor
A Dereference actor that always fails. This can be used as a fallback actor in the Dereference bus. Concretely, it accepts any action in its test phase, but rejects all actions in its run phase. If lenient mode is enabled, the rejection will be silenced.
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-fallback
Configure
After installing, this package can be added to your engine's configuration as follows:
{
"@context": [
...
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-dereference-fallback/^4.0.0/components/context.jsonld"
],
"actors": [
...
{
"@id": urn:comunica:default:dereference/actors#fallback,
"@type": "ActorDereferenceFallback"
}
]
}