Skip to content

Commit 83b347a

Browse files
authored
Aligned WOQL AST to DeletedTriple (fixes #434) (#435)
1 parent 30fe395 commit 83b347a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

terminusdb_client/woqlquery/woql_query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@ def removed_triple(self, sub, pred, obj, opt=False):
10161016
return self.opt().triple(sub, pred, obj)
10171017
if self._cursor.get("@type"):
10181018
self._wrap_cursor_with_and()
1019-
self._cursor["@type"] = "RemovedTriple"
1019+
self._cursor["@type"] = "DeletedTriple"
10201020
self._cursor["subject"] = self._clean_subject(sub)
10211021
self._cursor["predicate"] = self._clean_predicate(pred)
10221022
self._cursor["object"] = self._clean_object(obj)

0 commit comments

Comments
 (0)