@comunica/actor-rdf-serialize-n3
v4.0.2
Published
A n3 rdf-serialize actor
Downloads
19,762
Readme
Comunica N3 RDF Serialize Actor
An RDF Serialize actor that handles Turtle, TriG, N-Quads, N-Triples and N3 using N3.js.
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-serialize-n3
Configure
After installing, this package can be added to your engine's configuration as follows:
{
"@context": [
...
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-abstract-mediatyped/^4.0.0/components/context.jsonld",
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-rdf-serialize-n3/^4.0.0/components/context.jsonld"
],
"actors": [
...
{
"@id": "urn:comunica:default:rdf-serialize/actors#n3",
"@type": "ActorRdfSerializeN3",
"priorityScale": 1
}
]
}
Config Parameters
priorityScale
: An optional priority for this serializer, used for content negotiation, defaults to1
.