async-graphql/src/model/input_value.rs

29 lines
859 B
Rust
Raw Normal View History

2020-03-03 11:15:18 +00:00
use crate::model::__Type;
use crate::{registry, GQLObject};
2020-03-03 11:15:18 +00:00
pub struct __InputValue<'a> {
pub registry: &'a registry::Registry,
pub input_value: &'a registry::MetaInputValue,
2020-03-03 11:15:18 +00:00
}
/// Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.
#[GQLObject(internal)]
2020-03-05 06:23:55 +00:00
impl<'a> __InputValue<'a> {
async fn name(&self) -> String {
2020-03-05 06:23:55 +00:00
self.input_value.name.to_string()
2020-03-03 11:15:18 +00:00
}
async fn description(&self) -> Option<String> {
2020-03-05 06:23:55 +00:00
self.input_value.description.map(|s| s.to_string())
2020-03-03 11:15:18 +00:00
}
2020-03-05 06:23:55 +00:00
#[field(name = "type")]
async fn ty(&self) -> __Type<'a> {
2020-03-05 06:23:55 +00:00
__Type::new(self.registry, &self.input_value.ty)
2020-03-03 11:15:18 +00:00
}
async fn default_value(&self) -> Option<String> {
self.input_value.default_value.clone()
2020-03-03 11:15:18 +00:00
}
}