Hi,
I want to be able to search for some properties that have some specials characters(#, !). The standard analyzer does not seem to work well for my use case can you suggest some analyzers that will work best.
Node properties example:
{
"identity": 588,
"labels": [
"SYS"
],
"properties": {
"name": "&{}CIT-GE",
"psId": "1232"
}
}
I want to be able to run some queries like the below.
call db.index.fulltext.queryNodes("TX_eucId_csiId_name_key","*#CIT*") yield node return node
thanks!