SPARQL select multiple

Transformer, allows the user to transform RDF data into multiple CSV files using multiple SPARQL SELECT queries.

Characteristics

ID
t-sparqlselectmultiple
Type
transformer
Inputs
RDF single graph - Configuration
RDF single graph - Input
Outputs
Files
Look in pipeline
SPARQL select multiple
Sample pipeline
available

The SPARQL select multiple component creates CSV files using SPARQL SELECT queries based on the input RDF data. It can only 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 ss: <http://plugins.linkedpipes.com/ontology/t-sparqlSelectMultiple#> .

<http://localhost/config/1> a ss:Configuration ;
    ss:query "SELECT ?s ?p ?o WHERE { ?s ?p ?o}" ;
    ss:fileName "table1.csv" .

<http://localhost/config/2> a ss:Configuration ;
    ss:query "SELECT ?s ?p ?o WHERE { ?s ?p ?o} LIMIT 1" ;
    ss:fileName "table2.csv" .