SPARQL update

Transformer, allows the user to transform RDF data using SPARQL UPDATE queries. This means that the input data will be changed - added to and/or deleted from.

SPARQL Update query
Query for transformation of triples

Characteristics

ID
t-sparqlupdate
Type
transformer
Inputs
RDF single graph - Configuration
RDF single graph - Input
Outputs
RDF single graph
Look in pipeline
SPARQL update
Sample pipeline
available

The SPARQL update component modifies input data using a SPARQL Update query, passing the input data and modifying it using the query. It can be configured at runtime using RDF configuration, which can be generated by another component.

Runtime configuration

Below you can see sample runtime configuration for the component. You can also import a sample pipeline. Note that RDF blank nodes are not allowed in runtime configurations.

@prefix su: <http://plugins.linkedpipes.com/ontology/t-sparqlUpdate#> .

<http://localhost/config> a su:Configuration ;
    su:query "DELETE { ?s a ?o } WHERE { ?s a ?o}" .