You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Exit and report failures at the end of the input when reading from a file.
56
59
|
57
60
58
-
|--enable-autocompletions
59
-
|Whether to enable Cypher autocompletions inside the CLI, which are disabled by default.
60
-
|
61
+
|--enable-autocompletions
62
+
|Whether to enable Cypher autocompletions inside the CLI. Completions can only be enabled for neo4j 5 and later.
63
+
|false
61
64
62
65
|--format {auto,verbose,plain}
63
66
|Desired output format. Displays the results in tabular format if you use the shell interactively and with minimal formatting if you use it for scripting. +
64
-
`verbose` displays results in a tabular format and prints statistics. +
67
+
`verbose` displays results in tabular format and prints statistics. +
65
68
`plain` displays data with minimal formatting.
66
69
|auto
67
70
68
71
|-P PARAM, --param PARAM
69
-
|Add a parameter to this session. Example: `-P '{a: 1}'`, `-P '{a: 1, b: duration({seconds: 1})}'`, or using arrow syntax `-P 'a => 1'`. This argument can be specified multiple times.
72
+
|Add a parameter to this session. Example: `-P '{a: 1}'` or `-P '{a: 1, b: duration({seconds: 1})}'`. This argument can be specified multiple times.
70
73
|[]
71
74
72
75
|--non-interactive
73
76
|Force non-interactive mode. Only useful when auto-detection fails (like on Windows).
74
77
|false
75
78
76
79
|--sample-rows SAMPLE-ROWS
77
-
|Number of rows sampled to compute table widths (only for format=VERBOSE)
80
+
|Number of rows sampled to compute table widths (only for format=VERBOSE).
78
81
|1000
79
82
80
83
|--wrap {true,false}
81
-
|Wrap table column values if the column is too narrow (only for format=VERBOSE).
84
+
|Wrap table column values if column is too narrow (only for format=VERBOSE).
82
85
|true
83
86
84
87
|-v, --version
@@ -102,14 +105,14 @@ After executing all statements, Cypher Shell shuts down.
102
105
|Enable logging to the specified file, or standard error if the file is omitted.
103
106
|
104
107
105
-
|--history [HISTORY-BEHAVIOUR]
106
-
|File path of query and command history file or `in-memory` for in-memory history.
107
-
Defaults to <user home>/.neo4j/.cypher_shell_history.
108
-
It can also be set using the environmental variable NEO4J_CYPHER_SHELL_HISTORY.
108
+
|--history HISTORY-BEHAVIOUR
109
+
|File path of a query and a command history file or `in-memory` for in-memory history.
110
+
If the option is omitted, history is saved to `<user home>/.neo4j/.cypher_shell_history`.
111
+
Can also be set using the environment variable `NEO4J_CYPHER_SHELL_HISTORY`.
109
112
|
110
113
111
114
|--notifications
112
-
|Enable query notifications in interactive mode.
115
+
|Enable notifications in interactive mode.
113
116
|false
114
117
115
118
|--idle-timeout IDLE-TIMEOUT
@@ -147,10 +150,10 @@ Can also be specified using the environment variable `NEO4J_ADDRESS` or `NEO4J_U
147
150
|
148
151
149
152
| --encryption {true,false,default}
150
-
| Whether the connection to Neo4j should be encrypted. This must be consistent with Neo4j's configuration. If choosing `default`, the encryption setting is deduced from the specified address. For example, the `neo4j+ssc` protocol uses encryption.
153
+
| Whether the connection to Neo4j should be encrypted. This must be consistent with the Neo4j's configuration. If choosing 'default', the encryption setting is deduced from the specified address. For example, the 'neo4j+ssc' protocol uses encryption.
151
154
| default
152
155
153
-
| -d DATABASE --database DATABASE
156
+
| -d DATABASE, --database DATABASE
154
157
| Database to connect to. Can also be specified using the environment variable NEO4J_DATABASE.
0 commit comments