RDF-Connect processor to map entities with blank node identifiers to equivalents with named node identifiers
- License
- MIT
- Install Size
- 87.6 kB/-
- Vulns
- 0
- Published
$
npm install @rdfc/skolemization-processor-ts$
pnpm add @rdfc/skolemization-processor-ts$
yarn add @rdfc/skolemization-processor-ts$
bun add @rdfc/skolemization-processor-ts$
deno add npm:@rdfc/skolemization-processor-ts$
vlt install @rdfc/skolemization-processor-tsSkolemization Processor
Install
npm install @rdfc/skolemization-processor-ts
Pipeline
@prefix rdfc: <https://w3id.org/rdf-connect#>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
### Import the processor definitions
<> owl:imports <./node_modules/@rdfc/skolemization-processor-ts/processor.ttl>.
### Define the channels your processor needs
<in> a rdfc:Reader, rdfc:Writer.
<out> a rdfc:Reader, rdfc:Writer.
### Attach the processor to the pipeline under the NodeRunner
# Add the `rdfc:processor <skolemizer>` statement under the `rdfc:consistsOf` statement of the `rdfc:NodeRunner`
### Define and configure the processors
<skolemizer> a rdfc:SkolemizationProcessor;
rdfc:incoming <in>;
rdfc:outgoing <out>;
rdfc:meme "text/turtle".
This repository contains a RDF-Connect processor to map entities with blank node identifiers to equivalents with named node identifiers. It will also replace the references to the blank node identifiers with the named node identifiers.