| Crates.io | zawgl-client |
| lib.rs | zawgl-client |
| version | 0.1.19 |
| created_at | 2022-08-16 10:35:20.659776+00 |
| updated_at | 2025-04-01 00:50:53.47358+00 |
| description | Zawgl Graph Database Client |
| homepage | |
| repository | |
| max_upload_size | |
| id | 646553 |
| size | 39,240 |
Zawgl graph database rust client
Zawgl query language is Cypher.
Sample usage:
use serde_json::*;
let client = Client::new("ws://localhost:8182").await;
let params = json!({
"pid": 12
});
let r = client.execute_cypher_request_with_parameters("match (n:Person) where id(n) = $pid return n", params).await;
The response is a Json message, see example below:
{
"request_id": "969f462c-ec71-41ab-bed8-0b46314f5965",
"result": {
"graphs": [
{
"nodes": [
{
"name": "x",
"id": 113,
"properties": [],
"labels": [
"Person"
]
}
],
"relationships": [
{
"id": 78,
"source_id": 113,
"target_id": 113,
"properties": [],
"labels": [
"FRIEND_OF"
],
"name": "f"
}
]
}
]
}
}