Skip to content

Commit b09d4c9

Browse files
committed
Changed to correct WOQL AST keyword (fixes #312)
1 parent 7efe5eb commit b09d4c9

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)