reactive_graph_client/schema_graphql/
mod.rs

1pub mod instances;
2pub mod scalar;
3pub mod system;
4pub mod types;
5
6#[allow(clippy::module_inception)]
7pub mod schema {
8    cynic::use_schema!("../../schema/graphql/reactive-graph-schema.graphql");
9}
10
11#[allow(clippy::upper_case_acronyms)]
12type JSON = serde_json::Value;
13cynic::impl_scalar!(JSON, schema::JSON);