devoyage-subgraph 0.0.15

Subgraph is a CLI that instantly generates a GraphQL API around Mongo, SQL, and HTTP APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use sqlx::{mysql::MySqlRow, postgres::PgRow, sqlite::SqliteRow};

pub mod create_one;
pub mod find_many;
pub mod find_one;
pub mod update_many;
pub mod update_one;

#[derive(Debug)]
pub struct Services;

pub enum ResponseRow {
    MySql(MySqlRow),
    Postgres(PgRow),
    SqLite(SqliteRow),
}