We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b491631 commit cecdc66Copy full SHA for cecdc66
src/memos/graph_dbs/polardb.py
@@ -4744,7 +4744,7 @@ def delete_node_by_prams(
4744
4745
# Then, combine with user_name condition using AND (must match user_name AND one of the data conditions)
4746
user_name_where = " OR ".join(user_name_conditions)
4747
- ids_where = f"({user_name_where}) AND ({data_conditions})"
+ ids_where = f"{user_name_where} AND ({data_conditions})"
4748
4749
# Use Cypher DELETE query
4750
# First count matching nodes to get accurate count
0 commit comments