From d5fb975a452d9da88ad240a04c6491a49e4dafac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20H=C3=B6ij?= Date: Sun, 20 Apr 2025 21:17:51 +0200 Subject: [PATCH] Aligned WOQL AST to DeletedTriple (fixes #434) --- terminusdb_client/woqlquery/woql_query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminusdb_client/woqlquery/woql_query.py b/terminusdb_client/woqlquery/woql_query.py index 5cf4507b..35fbad21 100644 --- a/terminusdb_client/woqlquery/woql_query.py +++ b/terminusdb_client/woqlquery/woql_query.py @@ -1016,7 +1016,7 @@ def removed_triple(self, sub, pred, obj, opt=False): return self.opt().triple(sub, pred, obj) if self._cursor.get("@type"): self._wrap_cursor_with_and() - self._cursor["@type"] = "RemovedTriple" + self._cursor["@type"] = "DeletedTriple" self._cursor["subject"] = self._clean_subject(sub) self._cursor["predicate"] = self._clean_predicate(pred) self._cursor["object"] = self._clean_object(obj)