I'm running a regular AuraDB instance, and for some reason it appears to be missing the tanh
function.
When I run: RETURN apoc.math.tanh(1)
I get:
Neo.ClientError.Statement.SyntaxError
Unknown function 'apoc.math.tanh' (line 1, column 8 (offset: 7))
"RETURN apoc.math.tanh(1)"
I appear to be on the latest version:
return apoc.version()
"2025.01.0"
It certainly looks like it should be there; it's in the regular Apoc docs:
call apoc.help("tanh")
comes back with no records.
What's going wrong here?