use graphql_client::GraphQLQuery;
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "src/gql/schema.graphql",
query_path = "src/gql/mutations/strings/PluginCreate.graphql",
response_derives = "Debug, Serialize, Clone"
)]
pub struct PluginCreate;
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "src/gql/schema.graphql",
query_path = "src/gql/mutations/strings/PluginDelete.graphql",
response_derives = "Debug, Serialize, Clone"
)]
pub struct PluginDelete;
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "src/gql/schema.graphql",
query_path = "src/gql/mutations/strings/ValidateTwoFactor.graphql",
response_derives = "Debug, Serialize, Clone"
)]
pub struct ValidateTwoFactor;
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "src/gql/schema.graphql",
query_path = "src/gql/mutations/strings/ProjectCreate.graphql",
response_derives = "Debug, Serialize, Clone"
)]
pub struct ProjectCreate;
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "src/gql/schema.graphql",
query_path = "src/gql/mutations/strings/LoginSessionCreate.graphql",
response_derives = "Debug, Serialize, Clone"
)]
pub struct LoginSessionCreate;
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "src/gql/schema.graphql",
query_path = "src/gql/mutations/strings/LoginSessionConsume.graphql",
response_derives = "Debug, Serialize, Clone"
)]
pub struct LoginSessionConsume;
#[derive(GraphQLQuery)]
#[graphql(
schema_path = "src/gql/schema.graphql",
query_path = "src/gql/mutations/strings/ServiceDomainCreate.graphql",
response_derives = "Debug, Serialize, Clone"
)]
pub struct ServiceDomainCreate;