# Operations declared by barnard59-graph-store
# https://barnard59.zazuko.com/packages/graph-store

@prefix code: <https://code.described.at/>.
@prefix p: <https://pipeline.described.at/>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.

<https://barnard59.zazuko.com/operations/graph-store/get> a p:Operation, p:ReadableObjectMode;
  rdfs:comment "Reads RDF/JS Quads from the given named graph using the SPARQL Graph Store Protocol.";
  rdfs:label "Read RDF/JS Quads (Graph Store)";
  code:implementedBy [ a code:EcmaScriptModule;
      code:link <node:barnard59-graph-store/get.js#default>
    ].

<https://barnard59.zazuko.com/operations/graph-store/post> a p:Operation, p:WritableObjectMode;
  rdfs:comment "Appends RDF/JS Quads to the given named graph using the SPARQL Graph Store Protocol.";
  rdfs:label "Append RDF/JS Quads (Graph Store)";
  code:implementedBy [ a code:EcmaScriptModule;
      code:link <node:barnard59-graph-store/post.js#default>
    ].

<https://barnard59.zazuko.com/operations/graph-store/put> a p:Operation, p:WritableObjectMode;
  rdfs:comment "Writes RDF/JS Quads to the given named graph using the SPARQL Graph Store Protocol.";
  rdfs:label "Write RDF/JS Quads (Graph Store)";
  code:implementedBy [ a code:EcmaScriptModule;
      code:link <node:barnard59-graph-store/put.js#default>
    ].
