solomon-db
solomon-db copied to clipboard
An embedded Gremlin-compatible graph database written in Rust
The deployment of github pages is not showing 404 so it must immediately fixed.
**Is your feature request related to a problem? Please describe.** Apart from being as an embedded storage, SolomonDB can support Gremlin query on a single-node database server. We will build...
**Is your feature request related to a problem? Please describe.** ```rs let t1 = db .traverse() .v(1) .add_v("person") .property("github", "tin-snowflake") .property("name", "Tin Chung") .property("age", 21) .add_v("coder") .property("github", "chungquantin") .property("age", 30);...
**Is your feature request related to a problem? Please describe.** `has(key,predicate)`: Remove the traverser if its element does not have a key value that satisfies the bi-predicate. For more information...