Hello, I'm trying to use full text search functionality but I have an error.
Important details:
Neo4j version: Desktop, 4.1.0
APOC version: 4.1.0.1
Operating system: Windows 10
In Neo4j Desktop, in my db I did this: CALL db.index.fulltext.createNodeIndex("articleIndex", ["ARTICLE"],["title"])
Next, still in Desktop I tried a request and it works: CALL db.index.fulltext.queryNodes("articleIndex", "tiktok")
So I added a cypher directive in my graphql schema:
{
fuzzyArticleByTitle(searchString:"tiktok"){
title
}
}
And I have the following error: "message": "Failed to invoke function apoc.cypher.runFirstColumn: Caused by: java.lang.IllegalArgumentException: There is no such fulltext schema index: articleIndex"
Hello, I'm trying to use full text search functionality but I have an error.
Important details:
Neo4j version: Desktop, 4.1.0 APOC version: 4.1.0.1 Operating system: Windows 10 In Neo4j Desktop, in my db I did this:
CALL db.index.fulltext.createNodeIndex("articleIndex", ["ARTICLE"],["title"])
Next, still in Desktop I tried a request and it works:
CALL db.index.fulltext.queryNodes("articleIndex", "tiktok")
So I added a cypher directive in my graphql schema:
I tried a request in GraphQL Playground:
And I have the following error:
"message": "Failed to invoke function apoc.cypher.runFirstColumn: Caused by: java.lang.IllegalArgumentException: There is no such fulltext schema index: articleIndex"
I don't how I can fix this bug