I\'m a newbie to Sparql, but I am unable even to make a simple insert data query, or so it seems.
I\'m using Apache Fuseki as working server; I\'m in a graph, and I\
In SPARQL, query and update are different operations. In Fuseki, they reside on different endpoints (so query can be be more widely accessible than update).
You are calling the query endpoint (.../query
or .../sparql
usually) ; you need to call the update (.../update
).
There is a syntax error with your turtle in the SPARQL update
instead of
[ a
oa:Annotation ;
rdfs:label "Title";
] .
use
[ a
oa:Annotation ;
rdfs:label "Title"
] .