Comunica
    Preparing search index...

    Module @comunica/actor-query-operation-service - v5.4.0

    Comunica Service Query Operation Actor

    npm version

    A Query Operation actor that handles SPARQL SERVICE clauses of which the target is a variable.

    SERVICE clauses with an IRI target are rewritten into source-annotated operations by @comunica/actor-optimize-query-operation-assign-sources-exhaustive.

    Variable targets are disabled by default, as the queried data then determines what is dereferenced, which is problematic when queries originate from untrusted parties. They can be enabled via the serviceAllowVariableTargets context entry.

    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.

    $ yarn add @comunica/actor-query-operation-service
    

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

    {
      "@context": [
        ...
        "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-query-operation-service/^5.0.0/components/context.jsonld"
      ],
      "actors": [
        ...
        {
          "@id": "urn:comunica:default:query-operation/actors#service",
          "@type": "ActorQueryOperationService",
          "mediatorQueryOperation": { "@id": "urn:comunica:default:query-operation/mediators#main" },
          "mediatorQuerySourceIdentify": { "@id": "urn:comunica:default:query-source-identify/mediators#main" },
          "mediatorMergeBindingsContext": { "@id": "urn:comunica:default:merge-bindings-context/mediators#main" }
        }
      ]
    }
    

    Classes

    ActorQueryOperationService

    Interfaces

    IActorQueryOperationServiceArgs