-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.ttl
33 lines (29 loc) · 1.4 KB
/
manifest.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@base <https://barnard59.zazuko.com/> .
@prefix b59: <https://barnard59.zazuko.com/vocab#> .
@prefix code: <https://code.described.at/> .
@prefix p: <https://pipeline.described.at/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<operations/graph-store/get> a p:Operation, p:ReadableObjectMode;
rdfs:label "Read RDF/JS Quads (Graph Store)";
rdfs:comment "Reads RDF/JS Quads from the given named graph using the SPARQL Graph Store Protocol.";
code:implementedBy [ a code:EcmaScriptModule;
code:link <node:barnard59-graph-store/get.js#default>
].
<operations/graph-store/post> a p:Operation, p:WritableObjectMode;
rdfs:label "Append RDF/JS Quads (Graph Store)";
rdfs:comment "Appends RDF/JS Quads to the given named graph using the SPARQL Graph Store Protocol.";
code:implementedBy [ a code:EcmaScriptModule;
code:link <node:barnard59-graph-store/post.js#default>
].
<operations/graph-store/put> a p:Operation, p:WritableObjectMode;
rdfs:label "Write RDF/JS Quads (Graph Store)";
rdfs:comment "Writes RDF/JS Quads to the given named graph using the SPARQL Graph Store Protocol.";
code:implementedBy [ a code:EcmaScriptModule;
code:link <node:barnard59-graph-store/put.js#default>
].
<command/graph-store/put>
a b59:CliCommand ;
b59:command "put" ;
rdfs:label "Upload RDF documents using SPARQL Graph Store Protocol" ;
b59:source "barnard59-graph-store/pipeline/put.ttl" ;
.