Nicola Stoira
Results
2
issues of
Nicola Stoira
I'm triggering SPARQL queries against the Virtuoso `/sparql` endpoint via the Python package `SPARQLWrapper`: ``` sparql = SPARQLWrapper(endpoint="http://graph:8890/sparql", returnFormat=return_format, defaultGraph=default_graph_uri) sparql.setQuery(query) sparql.setMethod(POST) ``` Sometimes I have SPARQL queries that have...
In my Virtuoso database instance I have around 30k graphs that I want to delete. I've search for an efficient solution but didn't find any so far. Trying to delete...