Maybe the syntax for this is obvious, but I have not found it. I'm using cypher-shell. Results are presented in ASCII art boxes like this:
+-----------------------------------------+
| movie | cast | actors |
+-----------------------------------------+
| "Forrest Gump" | ["Tom Hanks"] | 1 |
| "Cloud Atlas" | ["Tom Hanks"] | 1 |
+-----------------------------------------+
2 rows
I'm piping the results into a program, so I need to strip off the header/footer, box lines, and whitespace. I'd really like the results to be "bare bones" something like this:
"Forrest Gump","Tom Hanks",1
"Cloud Atlas","Tom Hanks",1
Is there an OUTPUT TEXT option or something to cause cyper to NOT format the output?