txtx-cloud 0.1.14

Crate for interacting with txtx Cloud Services
Documentation
use graphql_client::GraphQLQuery;

type Uuid = String;
#[derive(GraphQLQuery)]
#[graphql(
    schema_path = "src/gql/fixtures/schema.graphql",
    query_path = "src/gql/fixtures/queries.graphql",
    response_derives = "Debug",
    normalization = "rust",
    skip_serializing_none
)]
pub struct OrgsForUser;

pub struct OrgsForUserHelper;
impl OrgsForUserHelper {
    pub fn get_variable(user_id: &str) -> orgs_for_user::Variables {
        orgs_for_user::Variables { user_id: Some(user_id.to_string()) }
    }
}