fix(falkordb): add missing special characters to sanitize method#1151
Open
sgaluza wants to merge 1 commit intogetzep:mainfrom
Open
fix(falkordb): add missing special characters to sanitize method#1151sgaluza wants to merge 1 commit intogetzep:mainfrom
sgaluza wants to merge 1 commit intogetzep:mainfrom
Conversation
Add forward slash (/), backslash (\), and pipe (|) to the sanitize() method to prevent RediSearch query syntax errors. RediSearch uses these characters with special meaning: - | is the OR operator - \ is the escape character - / causes query syntax errors in entity names Updated docstring with: - Reference to RediSearch escaping documentation - Note that this is for fulltext search, not exact path matching Fixes getzep#1144 Related to getzep#1118 Built with [OnSteroids](https://onsteroids.ai) Co-Authored-By: OnSteroids <built@onsteroids.ai>
Member
|
All contributors have signed the CLA ✍️ ✅ |
Author
|
I have read the CLA Document and I hereby sign the CLA |
danielchalef
added a commit
that referenced
this pull request
Jan 14, 2026
maskshell
pushed a commit
to maskshell/graphiti
that referenced
this pull request
Jan 20, 2026
maskshell
pushed a commit
to maskshell/graphiti
that referenced
this pull request
Feb 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add forward slash (
/), backslash (\), and pipe (|) to thesanitize()method to prevent RediSearch query syntax errors.Problem
When entity names contain certain special characters, RediSearch queries fail with syntax errors. The current
sanitize()method handles most special characters but misses three important ones:|\/For example, an entity name like
"Cruise / En route"would produce malformed queries.Solution
Added the three missing characters to
separator_mapinsanitize():Also updated the docstring with:
Research
RediSearch reserved characters that require escaping (from official docs):
,.<>{}[]"':;!@#$%^&*()-+=~?|(OR),-(negation),*and?(wildcards)\The existing code already handles most of these, this PR adds the missing ones.
Related
/, this PR is more complete)Test Plan
"Cruise / En route"→"Cruise En route""path\\to\\file"→"path to file""option1|option2"→"option1 option2"Built with OnSteroids