Neo4j: Supply cypher parameters in web interface -


is possible pass parameters along cypher query via neo4j's web interface or shell? example, possible neo4j's web interface execute statement?

return {test}; 

running statement in web interface results in error:

expected parameter named test neo.clienterror.statement.parametermissing 

ideally, i'd like:

{ test: "foo" } // specify parameters pass via rest api  // normal query return {test}; 

is there way this? want because i'm using rest api on neo4j , queries take parameters. if want test of queries on web interface or shell, need manually edit query replace {parameter} markup either with declarations or raw input. i'd able copy/paste query as-is web interface, supplying set of parameters , have work.

does know of way this?

it possible in shell, "environment" variables available parameters.

so if do:

export test="foo" return {test} t; +-------+ | t     | +-------+ | "foo" | +-------+ 

you can see environment variables env

unfortunately not possible in browser yet, cool have, perhaps tampermonkey / chrome plugin.


Comments

Popular posts from this blog

node.js - Using Node without global install -

How to access a php class file from PHPFox framework into javascript code written in simple HTML file? -

java - Null response to php query in android, even though php works properly -