https://github.com/a-poor/cypher
A Cypher query language parser for Go
https://github.com/a-poor/cypher
Last synced: about 1 year ago
JSON representation
A Cypher query language parser for Go
- Host: GitHub
- URL: https://github.com/a-poor/cypher
- Owner: a-poor
- License: mit
- Created: 2021-12-09T23:22:25.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-15T01:47:50.000Z (almost 4 years ago)
- Last Synced: 2025-03-26T06:35:57.258Z (about 1 year ago)
- Language: Go
- Homepage: https://pkg.go.dev/github.com/a-poor/cypher
- Size: 118 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cypher
_created by Austin Poor_
A Cypher query language parser for Go.
## Notes
* [Cypher Manual](https://neo4j.com/docs/cypher-manual/current)
* [openCypher Resources](https://opencypher.org/resources)
* [Cypher Railroad Diagram](https://s3.amazonaws.com/artifacts.opencypher.org/M18/railroad/Cypher.html#SingleQuery)
* [Reading Railroad Diagrams](https://www.ibm.com/docs/en/integration-bus/10.0?topic=diagrams-how-read-railroad)
## Dev Notes
Cypher grammar file obtained from the [openCypher website](https://opencypher.org/resources).
Code generated with Antlr (version 4.7) via:
```bash
$ antlr -Dlanguage=Go -o parser Cypher.g4
```