graph_d 1.3.1

A native graph database implementation in Rust with built-in JSON support and SQLite-like simplicity
Documentation
1
2
3
4
5
6
7
8
9
10
11
use graph_d::gql::lexer::{Lexer, TokenKind};

fn main() {
    let mut lexer = Lexer::new("(a)-[:KNOWS]->(b)");
    let tokens = lexer.tokenize().unwrap();
    
    for (i, token) in tokens.iter().enumerate() {
        println\!("{}: {:?} '{}'", i, token.kind, token.lexeme);
    }
}
EOF < /dev/null