AGE is opensource backend for postgres, that allows user to perform graph related operations on postgres. You can read about it on the official website
This repository will be eventually merged into the age repository. The status of the work needed for PR can be found in the special issue within AGE issue tracker
More examples can be find in documentation (link below)
```rust use apacheage::{NoTls, AgType}; use apacheage::sync::{AgeClient, Client}; use serde::{Deserialize, Serialize};
let mut client = Client::connect_age( "host=localhost user=postgres password=passwd port=8081", NoTls ).unwrap();
client.creategraph("myapache_graph");
struct Person { pub name: String, pub surname: String, }
match client.querycypher::<()>(
"myapache_graph",
"MATCH (n: Person) WHERE n.name = 'Alfred' RETURN {name: n.name, surname: n.surname}",
None,
) {
Ok(rows) => {
let x: AgType
client.dropgraph("myapache_graph"); ```
There is a simple docker-compose file within tests directory. Run it to set up an AGE db.
bash
pushd tests
docker-compose up -d
popd
cargo t