Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
05-20-2019 12:17 AM
Hello
Seeing the APOC documentation i'm trying to use apoc.text.levenshteinDistance
procedure.
CALL apoc.text.levenshteinDistance('test', 'NOE_ALT1aVX')
Unfortunately, I've this error message :
Neo.ClientError.Procedure.ProcedureNotFound: There is no procedure with the name apoc.text.levenshteinDistance registered for this database instance. Please ensure you've spelled the procedure name correctly and that the procedure is properly deployed.
There is some things to add in neo4j.conf ?
By advance, thanks you all
Have a nice day
Solved! Go to Solution.
06-06-2019 08:38 AM
Hello,
apoc.text.levenshteinDistance()
is a function, not a procedure, so you don't need to use the CALL ... YIELD syntax. Just use it inline:
RETURN apoc.text.levenshteinDistance('test', 'NOE_ALT1aVX')
06-06-2019 07:40 AM
Up!
I need help...
06-06-2019 08:38 AM
Hello,
apoc.text.levenshteinDistance()
is a function, not a procedure, so you don't need to use the CALL ... YIELD syntax. Just use it inline:
RETURN apoc.text.levenshteinDistance('test', 'NOE_ALT1aVX')
All the sessions of the conference are now available online