Hey, lets suppose I have a 1. Model m 2. graph name http://host/graph 3. remote SPARQL 1.1 endpoint URI http://host/sparql
I want to use Jena to do a SPARQL Update to insert the Model as a named graph on the endpoint. In other words, I want to save the Model on http://host/sparql so that it later would be accessible in SPARQL via GRAPH <http://host/graph>. Is there a way to do this? The only example I've found that comes close to what I need is the following: http://linuxsoftwareblog.com/?p=843 It involves NG4J however, I would rather avoid that. In any case, the API workflow seems to be quite complicated to do something as simple. Why not allow smth like this? GraphstoreFactory.create("http://host/sparql").addNamedModel("http://host/graph", m); Martynas graphity.org
