@comunica/actor-rdf-resolve-hypermedia-qpf

A hypermedia-qpf rdf-resolve-quad-pattern actor

Usage no npm install needed!

<script type="module">
  import comunicaActorRdfResolveHypermediaQpf from 'https://cdn.skypack.dev/@comunica/actor-rdf-resolve-hypermedia-qpf';
</script>

README

Comunica Qpf RDF Resolve Quad Pattern Actor

npm version

An RDF Resolve Hypermedia actor that handles Triple Pattern Fragments and Quad Pattern Fragments interfaces. It sends triple/quad pattern queries to the interfaces and follows next-page links.

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-rdf-resolve-quad-pattern-qpf

Configure

After installing, this package can be added to your engine's configuration as follows:

{
  "@context": [
    ...
    "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-rdf-resolve-quad-pattern-qpf/^2.0.0/components/context.jsonld"  
  ],
  "actors": [
    ...
    {
      "@id": "urn:comunica:default:rdf-resolve-hypermedia/actors#qpf",
      "@type": "ActorRdfResolveHypermediaQpf",
      "mediatorDereferenceRdf": { "@id": "urn:comunica:default:dereference-rdf/mediators#main" },
      "mediatorMetadata": { "@id": "urn:comunica:default:rdf-metadata/mediators#main" },
      "mediatorMetadataExtract": { "@id": "urn:comunica:default:rdf-metadata-extract/mediators#main" }
    }
  ]
}

Config Parameters