123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- PREFIX : <dokk:>
- PREFIX fuseki: <http://jena.apache.org/fuseki#>
- PREFIX graph: <graphdata:name:>
- PREFIX ja: <http://jena.hpl.hp.com/2005/11/Assembler#>
- 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 tdb2: <http://jena.apache.org/2016/tdb#>
- PREFIX text: <http://jena.apache.org/text#>
- :dataset a ja:RDFDataset ;
- # ja:defaultGraph <> ;
- # tdb2:unionDefaultGraph true ;
- .
- # Add a new graph:
- #
- # :dataset ja:namedGraph [
- # ja:graphName graph: ;
- # ja:graph [
- # a tdb2:GraphTDB2 ;
- # In which dataset is the graph?
- # tdb2:location "path/" ;
- # How is it called in the dataset? If this is omitted, it will
- # pick the default graph in the dataset
- # tdb2:graphName <> ;
- # ]
- # ] .
- :dataset ja:namedGraph [
- ja:graphName graph:articles ;
- ja:graph [
- a tdb2:GraphTDB2 ;
- tdb2:location "dataset/articles" ;
- ]
- ] .
- :dataset ja:namedGraph [
- ja:graphName graph:apache-projects ;
- ja:graph [
- a tdb2:GraphTDB2 ;
- tdb2:location "dataset/apache-projects" ;
- ]
- ] .
- :dataset ja:namedGraph [
- ja:graphName graph:documentation ;
- ja:graph [
- a tdb2:GraphTDB2 ;
- tdb2:location "dataset/documentation" ;
- ]
- ] .
- :dataset ja:namedGraph [
- ja:graphName graph:dokk ;
- ja:graph [
- a tdb2:GraphTDB2 ;
- tdb2:location "dataset/dokk" ;
- ]
- ] .
- :dataset ja:namedGraph [
- ja:graphName graph:fsd ;
- ja:graph [
- a tdb2:GraphTDB2 ;
- tdb2:location "dataset/free-software-directory" ;
- ]
- ] .
- :dataset ja:namedGraph [
- ja:graphName graph:grid ;
- ja:graph [
- a tdb2:GraphTDB2 ;
- tdb2:location "dataset/grid" ;
- ]
- ] .
- :dataset ja:namedGraph [
- ja:graphName graph:gutenberg ;
- ja:graph [
- a tdb2:GraphTDB2 ;
- tdb2:location "dataset/gutenberg" ;
- ]
- ] .
- :dataset ja:namedGraph [
- ja:graphName graph:library ;
- ja:graph [
- a tdb2:GraphTDB2 ;
- tdb2:location "dataset/library" ;
- ]
- ] .
- :dataset ja:namedGraph [
- ja:graphName graph:lov ;
- ja:graph [
- a tdb2:GraphTDB2 ;
- tdb2:location "dataset/lov" ;
- ]
- ] .
- :dataset ja:namedGraph [
- ja:graphName graph:manpages ;
- ja:graph [
- a tdb2:GraphTDB2 ;
- tdb2:location "dataset/manpages" ;
- ]
- ] .
- :dataset ja:namedGraph [
- ja:graphName graph:prefixcc ;
- ja:graph [
- a tdb2:GraphTDB2 ;
- tdb2:location "dataset/prefix.cc" ;
- ]
- ] .
- :dataset ja:namedGraph [
- ja:graphName graph:princeton-wordnet ;
- ja:graph [
- a tdb2:GraphTDB2 ;
- tdb2:location "dataset/princeton-wordnet" ;
- ]
- ] .
- :dataset ja:namedGraph [
- ja:graphName graph:radio-browser ;
- ja:graph [
- a tdb2:GraphTDB2 ;
- tdb2:location "dataset/radio-browser" ;
- ]
- ] .
- :dataset ja:namedGraph [
- ja:graphName graph:spdx ;
- ja:graph [
- a tdb2:GraphTDB2 ;
- tdb2:location "dataset/spdx" ;
- ]
- ] .
-
-
-
-
|