graphql_client 0.0.1

A work-in-progress generic graphql client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[macro_use]
extern crate graphql_client;
#[macro_use]
extern crate serde_derive;
extern crate serde;

#[derive(GraphQLQuery)]
#[GraphQLQuery(
    query_path = "tests/introspection_query.graphql",
    schema_path = "tests/introspection_schema.graphql"
)]
struct IntrospectionQuery;

#[test]
fn introspection_schema() {
    ()
}