Questions tagged [cypher-shell]

36 questions
0
votes
1 answer

How to write match results from .cypher into textfile via cypher shell (Windows)?

I want to write match results based on cypher code inside a cypher file via cypher-shell into a text file (I am trying to do this on Windows). The cypher file contains: :beginmatch(n) return n;:commit I tried to execute: type x.cypher |…
CB_Dev
  • 41
  • 5
0
votes
1 answer

Is there a way to set Parameters in Cypher?

I have a LOAD_CSV cypher script that creates and sets properties for nodes and edges. I want to add a parameter at run time (i.e. when I do cat mycypher.cql | cypher-shell -u xxxx -p xxx) so that a key property gets set on nodes -- like so: LOAD CSV…
fiacre
  • 1,150
  • 2
  • 9
  • 26
0
votes
1 answer

How to import local CSV via cypher-shell+bolt from my computer on a server?

I need to import CSV from a local folder (on my computer) on a server. First I start the cypher-shell: cypher-shell.bat -a bolt://
:7687 -u user -p secret That works (I can do any Cypher-operation I want to do). After that I try to load the…
CB_Dev
  • 41
  • 5
0
votes
1 answer

redirect neo4j profiling output to file

I am profiling a query with cypher-shell, since according to this post it is easier to be compared. My command is something like the following (the query is different). sudo cypher-shell -a myip:myport -u myusr -p 'my_pwd' "EXPLAIN MATCH…
roschach
  • 8,390
  • 14
  • 74
  • 124
0
votes
1 answer

How to list files that can be imported from within cypher-shell?

How can I run common Terminal commands (or equivalent command) such as ls for listing importable files from within Cypher-shell?
roschach
  • 8,390
  • 14
  • 74
  • 124
-3
votes
1 answer

Less than operator issue in neo4j

>,= is working but less than operator is not working in cypher neo4j. What may be the reason ?
nik12
  • 5
  • 2
1 2
3