Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
11-27-2022 03:23 PM
Documentation here suggests that text array properties should be searchable via full-text search: https://neo4j.com/docs/cypher-manual/current/indexes-for-full-text-search/#administration-indexes-fu...
But in practice, I'm not seeing this work at all. If I change my string array to a concatenated string property, then the search works, but I can't get it working with a string array. Is the documentation incorrect, is this a bug, or am I missing something on my side?
CALL db.index.fulltext.queryNodes("namesAliases", "aliasExample") YIELD node, score RETURN node.name, node.alias, score
Solved! Go to Solution.
11-28-2022 05:27 AM
Hi @ftrbreed - this is a new feature in Neo4j 5. In looking over my notes, you will need to recreate any text indexes that were created in v4 in order to take advantage of this capability. So - you need to be on Neo4j 5 and if your text index was created in v4, you'll need to recreate it.
11-28-2022 05:27 AM
Hi @ftrbreed - this is a new feature in Neo4j 5. In looking over my notes, you will need to recreate any text indexes that were created in v4 in order to take advantage of this capability. So - you need to be on Neo4j 5 and if your text index was created in v4, you'll need to recreate it.
11-29-2022 12:04 AM
That's totally it, thank you 🙂 DB upgrade is in progress
All the sessions of the conference are now available online