19 releases

0.9.0 May 31, 2024
0.8.1 Nov 6, 2023
0.8.0 Oct 17, 2023
0.7.3 Mar 28, 2023

#388 in Network programming

Download history 83/week @ 2024-06-13 95/week @ 2024-06-20 81/week @ 2024-06-27 131/week @ 2024-07-04 36/week @ 2024-07-11 81/week @ 2024-07-18 169/week @ 2024-07-25 109/week @ 2024-08-01 133/week @ 2024-08-08 112/week @ 2024-08-15 72/week @ 2024-08-22 144/week @ 2024-08-29 109/week @ 2024-09-05 70/week @ 2024-09-12 168/week @ 2024-09-19 113/week @ 2024-09-26

479 downloads per month
Used in 2 crates

MIT license

66KB
2K SLoC

Dynamic graphql

Build Status Latest Version Rust Documentation GitHub license

extendable and dynamic graphql schema definition for async-graphql

Usage

use dynamic_graphql::App;

mod foo {
    use dynamic_graphql::{App, ExpandObject, ExpandObjectFields, SimpleObject};

    use super::root::Query;

    #[derive(SimpleObject)]
    pub struct Foo {
        id: String,
        name: String,
    }

    #[derive(ExpandObject)]
    pub struct FooQuery<'a>(&'a Query);

    #[ExpandObjectFields]
    impl FooQuery<'_> {
        async fn foo(id: String) -> Foo {
            Foo {
                id,
                name: "test".to_string(),
            }
        }
    }

    #[derive(App)]
    pub struct FooApp(FooQuery<'static>);
}

mod root {
    use dynamic_graphql::SimpleObject;

    #[derive(SimpleObject)]
    #[graphql(root)]
    pub struct Query;
}

#[derive(App)]
struct App(root::Query, foo::FooApp);

#[tokio::test]
async fn test() {
    let schema = App::create_schema().finish().unwrap();

    let sdl = schema.sdl();

    assert_eq!(
        &sdl,
        r#"

type Foo {
	id: String!
	name: String!
}



type Query {
	foo(id: String!): Foo!
}


schema {
	query: Query
}
"#
    );

    let query = r#"
        query {
            foo(id: "1") {
                id
                name
            }
        }
    "#;

    let res = schema.execute(query).await;
    let data = res.data.into_json().unwrap();

    assert_eq!(
        data,
        serde_json::json!({ "foo": { "id": "1", "name": "test" } })
    );
}

Dependencies

~14–26MB
~472K SLoC