async-graphql/src/model/input_value.rs

32 lines
904 B
Rust
Raw Normal View History

2020-03-03 11:15:18 +00:00
use crate::model::__Type;
2020-03-05 06:23:55 +00:00
use crate::registry;
2020-03-03 11:15:18 +00:00
use async_graphql_derive::Object;
pub struct __InputValue<'a> {
pub registry: &'a registry::Registry,
pub input_value: &'a registry::InputValue,
}
2020-03-05 06:23:55 +00:00
#[Object(
internal,
desc = "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."
)]
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> {
2020-03-05 06:23:55 +00:00
self.input_value.default_value.map(|s| s.to_string())
2020-03-03 11:15:18 +00:00
}
}