-
-
Notifications
You must be signed in to change notification settings - Fork 20
Open
Description
Hello,
I came across the problem that I use a full-text index search (db.index.fulltext.queryNodes) in my query.
The function returns a node and score variable, e.g.
CALL db.index.fulltext.queryNodes('userNames', ('*' + $text + '*')) YIELD node AS user, scoreThe problem is that the formatter of this plugin identifies the word node as a keyword and reformats the code to:
CALL db.index.fulltext.queryNodes('userNames', ('*' + $text + '*')) YIELD NODE AS user, scoreWith that, the query throws an exception because the variable must be named node and not NODE.
Would it be possible to not reformat the word node to uppercase?
See also: Full-text indexes
Thanks in advance.
Metadata
Metadata
Assignees
Labels
No labels