From b09d4c96ed9306c004a73cc17b4af57a74ade397 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20H=C3=B6ij?= Date: Sun, 20 Apr 2025 21:30:09 +0200 Subject: [PATCH] Changed to correct WOQL AST keyword (fixes #312) --- lib/query/woqlQuery.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/query/woqlQuery.js b/lib/query/woqlQuery.js index 9e7d6aac..dc72e230 100644 --- a/lib/query/woqlQuery.js +++ b/lib/query/woqlQuery.js @@ -604,7 +604,7 @@ WOQLQuery.prototype.removed_quad = function (subject, predicate, object, graphRe // if (a && a === 'args') // return args.concat(['graph']) if (!graphRef) return this.parameterError('Quad takes four parameters, the last should be a graph filter'); - this.cursor['@type'] = 'RemovedQuad'; + this.cursor['@type'] = 'DeletedQuad'; this.cursor.graph = this.cleanGraph(graphRef); return this; };