SPARQL construct

Transformer, allows the user to transform RDF data using a CONSTRUCT query. This means that based on the input data, output data will be generated using this query.

SPARQL CONSTRUCT query
Query for transformation of triples

Characteristics

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

The SPARQL construct component queries input data using a SPARQL CONSTRUCT query, producing new data on the output. 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 sc: <http://plugins.linkedpipes.com/ontology/t-sparqlConstruct#> .

<http://localhost/config> a sc:Configuration ;
    sc:query "CONSTRUCT { ?s ?p ?o } WHERE { ?s ?p ?o}" .