You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// @CHECKME: Does the Graph Parse here also need an URI?
300
-
$graph->parse($triples, "turtle", $this->baseUrl . $this->basePath . $path); // FIXME: The triples here are in sparql format, not in turtle;
315
+
$graph->parse($triples, "turtle", $this->baseUrl . $this->basePath . $this->requestedPath); // FIXME: The triples here are in sparql format, not in turtle;
301
316
302
317
break;
303
318
case"DELETE":
304
319
// delete $triples from $graph
305
320
$deleteGraph = $this->getGraph();
306
321
// @CHECKME: Does the Graph Parse here also need an URI?
307
-
$deleteGraph->parse($triples, "turtle", $this->baseUrl . $this->basePath . $path); // FIXME: The triples here are in sparql format, not in turtle;
322
+
$deleteGraph->parse($triples, "turtle", $this->baseUrl . $this->basePath . $this->requestedPath); // FIXME: The triples here are in sparql format, not in turtle;
308
323
$resources = $deleteGraph->resources();
309
324
foreach ($resourcesas$resource) {
310
325
$properties = $resource->propertyUris();
@@ -440,22 +455,22 @@ private function handleN3Update(Response $response, string $path, $contents): Re
0 commit comments