Skip to content
This repository has been archived by the owner on May 23, 2019. It is now read-only.

cycli 0.6.0

Compare
Choose a tag to compare
@nicolewhite nicolewhite released this 10 Jan 22:53
· 99 commits to master since this release

New Features

save-csv

Prepend a query with save-csv to save the query results to a CSV file in the current working directory.

> save-csv MATCH (p:Person)-[:ACTED_IN]->(m:Movie)
WHERE p.name = "Tom Hanks"
RETURN m.title, m.released;
    | m.title                | m.released
----+------------------------+------------
  1 | Charlie Wilson's War   |       2007
  2 | The Polar Express      |       2004
  3 | A League of Their Own  |       1992
  4 | Cast Away              |       2000
  5 | Apollo 13              |       1995
  6 | The Green Mile         |       1999
  7 | The Da Vinci Code      |       2006
  8 | Cloud Atlas            |       2012
  9 | That Thing You Do      |       1996
 10 | Joe Versus the Volcano |       1990
 11 | Sleepless in Seattle   |       1993
 12 | You've Got Mail        |       1998

22 ms
> quit
Goodbye!
$ ls *.csv
cycli 2016-01-22 at 11.02.27 AM.csv
$ cat cycli\ 2016-01-22\ at\ 11.02.27\ AM.csv 
m.title,m.released
Charlie Wilson's War,2007
The Polar Express,2004
A League of Their Own,1992
Cast Away,2000
Apollo 13,1995
The Green Mile,1999
The Da Vinci Code,2006
Cloud Atlas,2012
That Thing You Do,1996
Joe Versus the Volcano,1990
Sleepless in Seattle,1993
You've Got Mail,1998