summaryrefslogtreecommitdiff
path: root/src-py/db_controller.py
diff options
context:
space:
mode:
authorLV-426 <lv-426@taproot.org.il>2014-12-14 22:41:51 +0200
committerLV-426 <lv-426@taproot.org.il>2014-12-14 22:41:51 +0200
commita6cd66befa7f9b4041f7b06ecee408dd02617fb2 (patch)
treea8e007b7bc30a91409d7c6c3964cc8141fd69521 /src-py/db_controller.py
parent4f4effebb5b0b8db3682bad196b2907dc5ca603e (diff)
complete 'return {id_set}' move
Diffstat (limited to 'src-py/db_controller.py')
-rw-r--r--src-py/db_controller.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src-py/db_controller.py b/src-py/db_controller.py
index 2d4fe8ce..2ca7b551 100644
--- a/src-py/db_controller.py
+++ b/src-py/db_controller.py
@@ -344,7 +344,8 @@ class DBO_rm_node_set(DB_op):
q_arr = ['match (n)',
'where n.id in {id_set}',
'optional match (n)-[r]-()',
- 'delete n,r'
+ 'delete n,r',
+ 'return {id_set}'
]
else:
q_arr = ['match (n)',