pub type ResolverResult<T> = Result<T, GqlError>;
pub enum ResolverResult<T> { Ok(T), Err(GqlError), }
Contains the success value
Contains the error value