Hi, I try ti unsert a triple in my sparql endpoint but it not works!
I have Virtuoso.
I use this code:
// Use a local SPARQL 1.1 Graph Store (eg RedStore)
$gs = new EasyRdf_GraphStore('
http://127.0.0.1:8890//sparql-graph-crud');
// Add the current time in a graph
$graph1 = new EasyRdf_Graph();
$graph1->add('
http://example.com/test', 'rdfs:label', 'Test');
$graph1->add('
http://example.com/test', 'dc:date', time());
$response = $gs->insert($graph1, 'time.rdf');
echo $response;
// Get the graph back out of the graph store and display it
$graph2 = $gs->get('time.rdf');
print $graph2->dump();
But no insert and no get.
Please help me.
Thank you