use crate::model::__InputValue;
use crate::{registry, Enum, Object};
#[derive(Debug, Enum, Copy, Clone, Eq, PartialEq)]
#[graphql(internal, name = "__DirectiveLocation")]
#[allow(non_camel_case_types)]
pub enum __DirectiveLocation {
QUERY,
MUTATION,
SUBSCRIPTION,
FIELD,
FRAGMENT_DEFINITION,
FRAGMENT_SPREAD,
INLINE_FRAGMENT,
VARIABLE_DEFINITION,
SCHEMA,
SCALAR,
OBJECT,
FIELD_DEFINITION,
ARGUMENT_DEFINITION,
INTERFACE,
UNION,
ENUM,
ENUM_VALUE,
INPUT_OBJECT,
INPUT_FIELD_DEFINITION,
}
pub struct __Directive<'a> {
pub registry: &'a registry::Registry,
pub directive: &'a registry::MetaDirective,
}
#[Object(internal, name = "__Directive")]
impl<'a> __Directive<'a> {
#[inline]
async fn name(&self) -> &str {
self.directive.name
}
#[inline]
async fn description(&self) -> Option<&str> {
self.directive.description
}
#[inline]
async fn locations(&self) -> &Vec<__DirectiveLocation> {
&self.directive.locations
}
async fn args(&self) -> Vec<__InputValue<'a>> {
self.directive
.args
.values()
.map(|input_value| __InputValue {
registry: self.registry,
input_value,
})
.collect()
}
}