#graph-database #graph #wasmcloud #graphdb #api-bindings

wasmcloud-redisgraph

RedisGraph implementation of the wasmCloud Graph Database capability provider contract

4 releases

0.3.3 May 18, 2021
0.3.2 Mar 18, 2021
0.3.1 Feb 11, 2021
0.3.0 Feb 11, 2021

#2600 in Database interfaces

Apache-2.0

15KB
258 lines

crates.io Rust license documentation

wasmCloud Graph Database Provider (Redis Graph)

This repository contains a sample actor, and the main capability provider library.

While the actor and common libraries should be usable across different types of graph databases, this provider is build on top of Redis Graph.

The following sample shows just how few lines of code are required to build an actor that responds to HTTP requests, reads and writes graph data, and exposes results over HTTP as JSON:

actor_handlers! { codec::http::OP_HANDLE_REQUEST => handle_http_request,
                  codec::core::OP_HEALTH_REQUEST => health }

fn handle_http_request(req: codec::http::Request) -> HandlerResult<codec::http::Response> {    
    if req.method.to_uppercase() == "POST" {
        create_data()
    } else {
        query_data()
    }
}

// Execute a Cypher query to return data values
fn query_data() -> HandlerResult<codec::http::Response> {
    let (name, birth_year): (String, u32) =
        graph::default().graph("MotoGP")
            .query("MATCH (r:Rider)-[:rides]->(t:Team) WHERE t.name = 'Yamaha' RETURN r.name, r.birth_year")?;

    let result = json!({
        "name": name,
        "birth_year": birth_year
    });
    Ok(codec::http::Response::json(result, 200, "OK"))
}

fn health(_req: codec::core::HealthRequest) -> HandlerResult<()> {
    Ok(())
}

Dependencies

~7–10MB
~212K SLoC