Skip to content

Commit 79c28e1

Browse files
Merge pull request #313 from dfrnt-labs/issue/312-fix-removed-quad
Changed to correct WOQL AST keyword (fixes #312)
2 parents 7486a37 + b09d4c9 commit 79c28e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/query/woqlQuery.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ WOQLQuery.prototype.removed_quad = function (subject, predicate, object, graphRe
604604
// if (a && a === 'args')
605605
// return args.concat(['graph'])
606606
if (!graphRef) return this.parameterError('Quad takes four parameters, the last should be a graph filter');
607-
this.cursor['@type'] = 'RemovedQuad';
607+
this.cursor['@type'] = 'DeletedQuad';
608608
this.cursor.graph = this.cleanGraph(graphRef);
609609
return this;
610610
};

0 commit comments

Comments
 (0)