How can I clear the current triples in qEndpoint and replace with the new ones? #488
-
I am using the qEndpoint for loading and querying local knowledge graphs. Could you advise on how to clear the currently loaded/indexed triples and replace them with new ones? I attempted to use the 'DELETE' command, but the newly loaded triples are not being returned in queries. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Weirdly CLEAR ALL doesn't work, I'll have to look at it. This one works: DELETE WHERE { ?s ?p ?o } But qEndpoint is more in the spirit, we index/load a big dataset (HDT) and then we add/remove parts from it. If you want to fully erase the dataset, you can stop the endpoint, delete the |
Beta Was this translation helpful? Give feedback.
Weirdly CLEAR ALL doesn't work, I'll have to look at it. This one works:
But qEndpoint is more in the spirit, we index/load a big dataset (HDT) and then we add/remove parts from it. If you want to fully erase the dataset, you can stop the endpoint, delete the
hdt-store
andnative-store
directories in your qEndpoint installation and restart it.