-
Notifications
You must be signed in to change notification settings - Fork 0
/
.fuseki.ttl
23 lines (20 loc) · 1.37 KB
/
.fuseki.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@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 : <#> .
[] a fuseki:Server .
<#service> a fuseki:Service ;
rdfs:label "Firesat Dataset" ;
fuseki:name "firesat" ; # See the endpoint url in build.gradle
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:query ; fuseki:name "query" ] ; # SPARQL query service
fuseki:endpoint [ fuseki:operation fuseki:update ; fuseki:name "update" ] ; # SPARQL Update service
fuseki:endpoint [ fuseki:operation fuseki:shacl ; fuseki:name "shacl" ] ; # SHACL query service
fuseki:dataset <#dataset> .
<#dataset> a tdb:DatasetTDB ; # In memory TDB with union graph.
tdb:location "--mem--" ;
ja:context [ ja:cxtName "arq:queryTimeout" ; ja:cxtValue "1000" ] ; # Query timeout on this dataset (1s, 1000 milliseconds)
tdb:unionDefaultGraph true . # Make the default graph be the union of all named graphs.