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-fulltext-search-text-array-properties
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