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
The interactive Cypher shell for [kglite](https://github.com/kkollsga/kglite)
knowledge graphs — the `sqlite3`-style REPL for `.kgl` files.
```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:
```console
$ kglite
```
Pure-Rust single binary over `kglite::api::*` — no Python, no server.
`cargo install kglite-cli` installs the `kglite` binary.
- ------
Anything else is executed as Cypher. **Ctrl-C** cancels a running query;
**Ctrl-D** exits. (`.import` is not yet supported — there's no `LOAD CSV`; use
`.read` or `kglite.from_blueprint()`.)