3.0.3 • Published 29 days ago

@comunica/actor-merge-bindings-context-union v3.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
29 days ago

Comunica Context Union Merge Binding Factory Actor

npm version

An Merge Bindings Context actor that merges context entry values by taking the set-union. Values are compared using JavaScript's Set equality semantics.

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-merge-binding-factory-context-union

Configure

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

{
  "@context": [
    ...
    "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-merge-binding-factory-context-union/^1.0.0/components/context.jsonld"
  ],
  "actors": [
    ...
    {
      "@id": "urn:comunica:default:merge-binding-factory/actors#context-union",
      "@type": "ActorMergeBindingFactoryContextUnion",
      "contextKey": "sources"
    }
  ]
}

Config Parameters

  • contextKey: The context key name to merge over.