- neo4j version: 5.7.0
- apoc: 5.7.2
- GDSL: 2.3.6
I have a nestjs
app using a neo4j DB, in which I want to create a index like this:
CALL db.index.fulltext.createNodeIndex(
"FTS_Person_Company_fullName",
["Person", "Company"],
["fullName"],
{analyzer: "standard-folding", eventually_consistent: "true"})
but I get this error:
Neo4jError: There is no procedure with the name
db.index.fulltext.createNodeIndex
registered for this database instance. Please ensure you've spelled the procedure name correctly and that the procedure is properly deployed.
I tried to change the version of neo4j but that did not help to resolve the problem.