sui-gql-schema 0.14.0

Sui GraphQL schema for the Cynic client
Documentation
1
2
3
4
5
6
7
8
9
#![allow(clippy::unwrap_used)]

fn main() {
    cynic_codegen::register_schema("sui")
        .from_sdl_file("schemas/sui.graphql")
        .unwrap()
        .as_default()
        .unwrap();
}