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 f6eeff9 commit eb60331Copy full SHA for eb60331
src/memos/graph_dbs/polardb.py
@@ -3747,7 +3747,7 @@ def _build_filter_conditions_cypher(
3747
if filter:
3748
3749
def escape_cypher_string(value: str) -> str:
3750
- return value.replace("'", "\\'")
+ return value.replace("'", "''")
3751
3752
def build_cypher_filter_condition(condition_dict: dict) -> str:
3753
"""Build a Cypher WHERE condition for a single filter item."""
@@ -4286,6 +4286,7 @@ def parse_filter(
4286
"node_type",
4287
"info",
4288
"source",
4289
+ "file_ids",
4290
}
4291
4292
def process_condition(condition):
0 commit comments