{"id":15697060,"url":"https://github.com/jexp/boltsh","last_synced_at":"2025-05-08T23:34:02.161Z","repository":{"id":57190061,"uuid":"127676907","full_name":"jexp/boltsh","owner":"jexp","description":"Bolt Cypher Shell, built with OCLIF","archived":false,"fork":false,"pushed_at":"2018-04-01T22:43:51.000Z","size":12,"stargazers_count":7,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-12T19:18:28.820Z","etag":null,"topics":["bolt","cli","command-line-tool","cypher","database-queries","graph-database","neo4j","oclif"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jexp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-04-01T22:36:09.000Z","updated_at":"2021-02-14T14:47:53.000Z","dependencies_parsed_at":"2022-08-27T10:41:32.221Z","dependency_job_id":null,"html_url":"https://github.com/jexp/boltsh","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jexp%2Fboltsh","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jexp%2Fboltsh/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jexp%2Fboltsh/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jexp%2Fboltsh/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jexp","download_url":"https://codeload.github.com/jexp/boltsh/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253164487,"owners_count":21864273,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bolt","cli","command-line-tool","cypher","database-queries","graph-database","neo4j","oclif"],"created_at":"2024-10-03T19:11:25.629Z","updated_at":"2025-05-08T23:34:02.126Z","avatar_url":"https://github.com/jexp.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"boltsh\n======\n\nA Bolt Cypher Shell example built with [oclif](https://oclif.io) the \"open source cli framework\" from SalesForce/Heroku.\n\n[![Version](https://img.shields.io/npm/v/boltsh.svg)](https://npmjs.org/package/boltsh)\n[![CircleCI](https://circleci.com/gh/jexp/boltsh/tree/master.svg?style=shield)](https://circleci.com/gh/jexp/boltsh/tree/master)\n[![Appveyor CI](https://ci.appveyor.com/api/projects/status/github/jexp/boltsh?branch=master\u0026svg=true)](https://ci.appveyor.com/project/jexp/boltsh/branch/master)\n[![Codecov](https://codecov.io/gh/jexp/boltsh/branch/master/graph/badge.svg)](https://codecov.io/gh/jexp/boltsh)\n[![Downloads/week](https://img.shields.io/npm/dw/boltsh.svg)](https://npmjs.org/package/boltsh)\n[![License](https://img.shields.io/npm/l/boltsh.svg)](https://github.com/jexp/boltsh/blob/master/package.json)\n\n## Usage\n\n### Flags:\n\n* `-a bolt-address`, .e.g `-a bolt://localhost:7687`\n* `-u username`, e.g. `-u neo4j`\n* `-p password`, e.g. `-p \"xJMa2iacc}HGqsbjpuTaXpwF\"`\n* `-t` table mode\n\n### Argument - Cypher Query\n\nJust pass your Cypher query in double quotes, you can use single quotes within the query.\n\n```\nboltsh -p \"xJMa2iacc}HGqsbjpuTaXpwF\" -t \"MATCH (n:Person)--\u003e(m:Movie) RETURN n.name as person, n.born, collect(m.title) as movies LIMIT 10\"\n\n.-------------------------------------------------------------------------------------.\n|       n.name       | n.born |                        movies                         |\n|--------------------|--------|-------------------------------------------------------|\n| Diane Keaton       | 1946   | Something's Gotta Give                                |\n| Christina Ricci    | 1980   | Speed Racer                                           |\n| Robert Zemeckis    | 1951   | Cast Away,The Polar Express                           |\n| Renee Zellweger    | 1969   | Jerry Maguire                                         |\n| Brooke Langton     | 1970   | The Replacements                                      |\n| Kiefer Sutherland  | 1966   | A Few Good Men,Stand By Me                            |\n| Greg Kinnear       | 1963   | As Good as It Gets,You've Got Mail                    |\n| Ed Harris          | 1950   | Apollo 13                                             |\n| Bruno Kirby        | 1949   | When Harry Met Sally                                  |\n| Laurence Fishburne | 1961   | The Matrix,The Matrix Reloaded,The Matrix Revolutions |\n'-------------------------------------------------------------------------------------'\nReturned 10 row(s) in 16 ms.\n```\n\n\n## References\n\n* [oclif docs](https://oclif.io/docs)\n* [oclif example](https://github.com/oclif?utf8=%E2%9C%93\u0026q=example\u0026type=\u0026language=)\n\n* [neo4j-javascript-driver](https://github.com/neo4j/neo4j-javascript-driver)\n* [ascii-table](https://github.com/sorensen/ascii-table)\n\n* [neo4j](https://neo4j.com/developer/get-started)\n* [neo4j desktop](https://neo4j.com/download)\n* [neo4j sandbox](https://neo4j.com/sandbox)\n* [cypher](https://neo4j.com/developer/cypher)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjexp%2Fboltsh","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjexp%2Fboltsh","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjexp%2Fboltsh/lists"}