Struct juniper::executor::FieldError[][src]

pub struct FieldError<S = DefaultScalarValue> { /* fields omitted */ }
Expand description

Error type for errors that occur during field resolution

Field errors are represented by a human-readable error message and an optional Value structure containing additional information.

They can be converted to from any type that implements std::fmt::Display, which makes error chaining with the ? operator a breeze:

fn get_string(data: Vec<u8>) -> Result<String, FieldError>
{
    let s = String::from_utf8(data)?;
    Ok(s)
}

Implementations

Construct a new error with additional data

You can use the graphql_value! macro to construct an error:

use juniper::FieldError;
use juniper::graphql_value;

FieldError::new(
    "Could not open connection to the database",
    graphql_value!({ "internal_error": "Connection refused" })
);

The extensions parameter will be added to the "extensions" field of the error object in the JSON response:

{
  "errors": [
    "message": "Could not open connection to the database",
    "locations": [{"line": 2, "column": 4}],
    "extensions": {
      "internal_error": "Connection refused"
    }
  ]
}

If the argument is Value::null(), no extra data will be included.

Maps the ScalarValue type of this FieldError into the specified one.

Trait Implementations

Formats the value using the given formatter. Read more

Performs the conversion.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.