This is an automated email from the ASF dual-hosted git repository.
andy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/jena-site.git
The following commit(s) were added to refs/heads/main by this push:
new e0cada48c Update Fuseki example for text database
e0cada48c is described below
commit e0cada48c49b4a4e268cf28aeaf7a87bce888940
Author: Andy Seaborne <[email protected]>
AuthorDate: Tue Jul 4 08:38:43 2023 +0100
Update Fuseki example for text database
---
source/documentation/query/text-query.md | 26 ++++++++++++++++++++++----
1 file changed, 22 insertions(+), 4 deletions(-)
diff --git a/source/documentation/query/text-query.md
b/source/documentation/query/text-query.md
index ab54b5243..3c5ef4713 100644
--- a/source/documentation/query/text-query.md
+++ b/source/documentation/query/text-query.md
@@ -733,10 +733,28 @@ The following is an example of an assembler file defining
a TDB dataset with a L
) .
:myservice rdf:type fuseki:Service ;
- fuseki:name "myds" ; # e.g : `s-query
--service=http://localhost:3030/myds "select * ..."`
- fuseki:serviceQuery "query" ; # SPARQL query service
- fuseki:serviceUpdate "update" ; # SPARQL update service
- fuseki:serviceReadWriteGraphStore "data" ; # SPARQL Graph store
protocol (read and write)
+ # e.g : `s-query --service=http://localhost:3030/myds "select * ..."`
+ fuseki:name "myds" ;
+ # SPARQL query service : /myds
+ fuseki:endpoint [
+ fuseki:operation fuseki:query ;
+ ];
+ # SPARQL query service : /myds/query
+ fuseki:endpoint [
+ fuseki:operation fuseki:query ;
+ fuseki:name "query"
+ ];
+ # SPARQL update service : /myds/update
+ fuseki:endpoint [
+ fuseki:operation fuseki:update ;
+ fuseki:name "update"
+ ];
+ # SPARQL Graph store protocol (read and write) : /myds/data
+ fuseki:endpoint [
+ fuseki:operation fuseki:gsp-rw ;
+ fuseki:name "data"
+ ];
+ # The text-enabled dataset
fuseki:dataset :text_dataset ;
.