pub type ExecutionResult<S = DefaultScalarValue> = Result<Value<S>, FieldError<S>>;
Expand description
The result of resolving an unspecified field
Aliased Type§
enum ExecutionResult<S = DefaultScalarValue> {
Ok(Value<S>),
Err(FieldError<S>),
}