Crate warpgrapher[][src]

Warpgrapher makes it painless to create web services with graph-based data models. Describe the data model for which you want to run a web service. Wargrapher automatically generates a GraphQL schema from the data model, as well as a set of resolvers for basic create, read, update, and delete (CRUD) operations on that data. If you need more more sophisticated endpoints, you can supply your own custom resolvers. Warpgrapher will automatically generate the GraphQL configuration and invoke your custom resolvers when appropriate.

Re-exports

pub use juniper;
pub use client::Client;
pub use engine::config::Configuration;
pub use engine::database::DatabasePool;
pub use engine::value::Value;
pub use engine::Engine;

Modules

client

This module provides the Warpgrapher client.

engine

This module provides the Warpgrapher engine, with supporting modules for configuration, GraphQL schema generation, resolvers, and interface to the database.

Enums

Error

Error type for Warpgrapher