123456789101112131415161718192021222324252627 |
- # Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0
- @prefix : <#> .
- @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#> .
- ## ---------------------------------------------------------------
- ## Updatable in-memory dataset.
- <#service1> rdf:type fuseki:Service ;
- # URI of the dataset -- http://host:port/ds
- fuseki:name "test-service" ;
- fuseki:serviceQuery "sparql" ;
- fuseki:serviceQuery "query" ;
- fuseki:serviceUpdate "update" ;
- fuseki:serviceUpload "upload" ;
- fuseki:serviceReadWriteGraphStore "data" ;
- fuseki:serviceReadGraphStore "get" ;
- fuseki:dataset <#dataset> ;
- .
- ## In-memory, initially empty.
- <#dataset> rdf:type ja:RDFDataset .
|