Represents a Cypher Function, all Cypher functions provided by the library extend from this class, and it can be used to use custom functions
Cypher Documentation
const myFunction = new Cypher.Function("myFunction", [new Cypher.Literal("test"), new Cypher.Param("test2")]); Copy
const myFunction = new Cypher.Function("myFunction", [new Cypher.Literal("test"), new Cypher.Param("test2")]);
Cypher:
myFunction("test", $param0) Copy
myFunction("test", $param0)
Optional
Represents a Cypher Function, all Cypher functions provided by the library extend from this class, and it can be used to use custom functions
See
Cypher Documentation
Example
Cypher: