Hello,

I have a Fuseki/Jena setup and while it’s running, I’m trying to update one of 
the existing graph with more triples. I’m using the code:

ds.begin(ReadWrite.WRITE);
Model model = ds.getNamedModel(graphName);
FileManager.get().readModel(model, sourceFileName);
ds.commit();
ds.end();

The operation finishes without error, but as a result in TDB I have two graphs 
with the name graphName, instead of having the initially existing graph 
appended?

Seems like a bug in Jena. How can workaround it? Or am I doing something wrong?

Regards,
Stefan

Reply via email to