@comunica/actor-dereference-fallback

A fallback dereference actor

Usage no npm install needed!

<script type="module">
  import comunicaActorDereferenceFallback from 'https://cdn.skypack.dev/@comunica/actor-dereference-fallback';
</script>

README

Comunica Fallback Dereference Actor

npm version

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/^2.0.0/components/context.jsonld"  
  ],
  "actors": [
    ...
    {
      "@id": urn:comunica:default:dereference/actors#fallback,
      "@type": "ActorDereferenceFallback"
    }
  ]
}