I want to create a Fulltext index in Neo4j AuraDB for all nodes and all properties.
The example shows how to create an index for specific nodes and their properties, but I want to be able to search across all nodes and all their properties.
How should I modify and use the following Cypher query to meet this requirement?
CREATE FULLTEXT INDEX namesAndTeams FOR (n:Employee|Manager) ON EACH [n.name, n.team]
Would you like me to provide a possible solution or explanation for this query modification?