confql 0.5.0

Procedural macro for creating GraphQL server from yaml file trees and a schema
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use confql_proc_macro::graphql_schema;

graphql_schema! {
    type Query {
        version: String!
    }

    schema {
        query: Query
    }
}

fn main() {}