12345678910111213141516171819202122232425 |
- @prefix fuseki: <http://jena.apache.org/fuseki#> .
- @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
- @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
- @prefix tdb: <http://jena.hpl.hp.com/2008/tdb#> .
- @prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> .
- @prefix : <#> .
- [] rdf:type fuseki:Server .
- <#service> rdf:type fuseki:Service ;
- rdfs:label "Car" ; # Human readable label for dataset
- fuseki:name "car" ; # Name of the dataset in the endpoint url
- fuseki:serviceReadWriteGraphStore "data" ; # SPARQL Graph store protocol (read and write)
- fuseki:endpoint [ fuseki:operation fuseki:query ; fuseki:name "sparql" ] ; # SPARQL query service
- fuseki:endpoint [ fuseki:operation fuseki:shacl ; fuseki:name "shacl" ] ; # SHACL query service
- fuseki:dataset <#dataset> .
- ## In memory TDB with union graph.
- <#dataset> rdf:type tdb:DatasetTDB ;
- tdb:location "--mem--" ;
- # Query timeout on this dataset (1s, 1000 milliseconds)
- ja:context [ ja:cxtName "arq:queryTimeout" ; ja:cxtValue "1000" ] ;
- # Make the default graph be the union of all named graphs.
- tdb:unionDefaultGraph true .
|