1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
The interactive Cypher shell for [kglite](https://github.com/kkollsga/kglite)
knowledge graphs — the `sqlite3`-style REPL for `.kgl` files.
```console
$ pip install kglite-cli # ships the `kglite` binary on PATH
$ cargo install kglite-cli # build from source (needs a Rust toolchain)
```
`kglite-cli` is a standalone binary distribution — installing it gives you the
`kglite` command. It's independent of the `kglite` Python library; install
either or both.
```console
$ kglite app.kgl
kglite shell — app.kgl
Type .help for commands, .quit to exit.
kglite> MATCH (n:Person) RETURN n.name AS name LIMIT 3;
name
Alice
Bob
Carol
(3 rows)
kglite> .quit
```
Run with no path for a scratch in-memory graph (`$ kglite`). Pure-Rust single
binary over `kglite::api::*` — no Python, no server.
A Cypher statement runs when terminated by `;`, so it can span multiple lines;
dot-commands run on Enter. Tab completes dot-commands and the graph's labels.
- --------
Anything else is executed as Cypher. **Ctrl-C** cancels a running query;
**Ctrl-D** exits.