use crate::parser::types::Field; use crate::{ registry, ContextSelectionSet, InputValueResult, InputValueType, OutputValueType, Positioned, Result, Type, Value, }; use std::borrow::Cow; use std::collections::VecDeque; impl Type for VecDeque { fn type_name() -> Cow<'static, str> { Cow::Owned(format!("[{}]", T::qualified_type_name())) } fn qualified_type_name() -> String { format!("[{}]!", T::qualified_type_name()) } fn create_type_info(registry: &mut registry::Registry) -> String { T::create_type_info(registry); Self::qualified_type_name() } } impl InputValueType for VecDeque { fn parse(value: Option) -> InputValueResult { match value.unwrap_or_default() { Value::List(values) => { let mut result = Self::default(); for elem_value in values { result.extend(std::iter::once(InputValueType::parse(Some(elem_value))?)); } Ok(result) } value => Ok({ let mut result = Self::default(); result.extend(std::iter::once(InputValueType::parse(Some(value))?)); result }), } } fn to_value(&self) -> Value { Value::List(self.iter().map(InputValueType::to_value).collect()) } } #[async_trait::async_trait] impl OutputValueType for VecDeque { async fn resolve( &self, ctx: &ContextSelectionSet<'_>, field: &Positioned, ) -> Result { let mut futures = Vec::with_capacity(self.len()); for (idx, item) in self.iter().enumerate() { let ctx_idx = ctx.with_index(idx); futures.push(async move { OutputValueType::resolve(item, &ctx_idx, field).await }); } Ok(futures::future::try_join_all(futures).await?.into()) } }