async-graphql/src/scalars/uuid.rs

22 lines
535 B
Rust
Raw Normal View History

use crate::{InputValueError, InputValueResult, Result, ScalarType, Value};
use async_graphql_derive::Scalar;
2020-03-01 10:54:34 +00:00
use uuid::Uuid;
#[Scalar(internal)]
impl ScalarType for Uuid {
2020-03-01 10:54:34 +00:00
fn type_name() -> &'static str {
"UUID"
}
fn parse(value: &Value) -> InputValueResult<Self> {
2020-03-01 10:54:34 +00:00
match value {
Value::String(s) => Ok(Uuid::parse_str(&s)?),
_ => Err(InputValueError::ExpectedType),
2020-03-01 10:54:34 +00:00
}
}
2020-03-25 03:39:28 +00:00
fn to_json(&self) -> Result<serde_json::Value> {
Ok(self.to_string().into())
2020-03-01 10:54:34 +00:00
}
}