neo4j-script-procedures icon indicating copy to clipboard operation
neo4j-script-procedures copied to clipboard

Neo4j Procedures to declare, store and run Javascript, Python, R, Ruby based procedures

Results 2 neo4j-script-procedures issues
Sort by recently updated
recently updated
newest added

see: https://neo4j-contrib.github.io/neo4j-apoc-procedures/#_custom_cypher_based_procedures_and_functions https://github.com/neo4j-contrib/neo4j-apoc-procedures/blob/3.4/src/main/java/apoc/custom/CypherProcedures.java

See github.com/moxious/magnolia. http://www.graalvm.org/docs/reference-manual/polyglot/ /cc @moxious ``` // gu install ruby python R // groovy PolyTest1.groovy @Grab("org.graalvm.sdk:graal-sdk:1.0.0-rc9") import org.graalvm.polyglot.* context = Context.newBuilder().allowAllAccess(true).build() context.eval("js", "print('Hello JavaScript!');") context.eval("R", "print('Hello R!');"); context.eval("ruby", "puts 'Hello...