You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
With 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?
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.
The problem is that the formatter of this plugin identifies the word
node
as a keyword and reformats the code to:With that, the query throws an exception because the variable must be named
node
and notNODE
.Would it be possible to not reformat the word
node
to uppercase?See also: Full-text indexes
Thanks in advance.
The text was updated successfully, but these errors were encountered: