hive-router 0.2.0

GraphQL router for Federation, part of the Hive platform
use crate::query_planner::{
    ast::fragment_expansion::FragmentExpansionError, graph::error::GraphError,
    utils::cancellation::CancellationError,
};

use super::fetch::error::FetchGraphError;

#[derive(Debug, Clone, thiserror::Error)]
pub enum QueryPlanError {
    #[error("FetchGraph error: {0}")]
    FetchGraphFailure(#[from] FetchGraphError),
    #[error("Graph error: {0}")]
    GraphFailure(#[from] GraphError),
    #[error("Root fetch is missing")]
    NoRoot,
    #[error("Failed to build a plan")]
    EmptyPlan,
    #[error("Query planning finished with unresolved pending steps")]
    UnexpectedPendingState,
    #[error("Internal Error: {0}")]
    Internal(String),
    #[error("Fragment expansion error: {0}")]
    FragmentExpansionFailure(#[from] FragmentExpansionError),
    #[error(transparent)]
    CancellationError(#[from] CancellationError),
}