-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfuseki.ttl
More file actions
27 lines (22 loc) · 906 Bytes
/
fuseki.ttl
File metadata and controls
27 lines (22 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
PREFIX : <#>
PREFIX fuseki: <http://jena.apache.org/fuseki#>
PREFIX ja: <http://jena.hpl.hp.com/2005/11/Assembler#>
PREFIX tdb: <http://jena.hpl.hp.com/2008/tdb#>
####################################################################################
# Minimal variables to customize this configuration
# the name of the dataset in Fuseki (matches one in onml.yml)
:service
fuseki:name "example" .
#####################################################################################
# Configuration provides a single Service exposing query/update/graphstore endpoints.
# one a single (TDB) dataset
:service a fuseki:Service ;
fuseki:dataset :dataset ;
fuseki:serviceQuery "" , "query", "sparql" ;
fuseki:serviceReadWriteGraphStore "data" ;
fuseki:serviceReadGraphStore "get" ;
.
:dataset a tdb:DatasetTDB ;
tdb:location "--mem--" ;
tdb:unionDefaultGraph true ;
.