apollo_compiler/execution/mod.rs
1//! APIs related to [executing a GraphQL request][execution]
2//! and returning a [GraphQL response][response]
3//!
4//! [execution]: https://spec.graphql.org/October2021/#sec-Execution
5//! [response]: https://spec.graphql.org/October2021/#sec-Response
6
7#[macro_use]
8pub(crate) mod resolver;
9pub(crate) mod engine;
10pub(crate) mod input_coercion;
11pub(crate) mod result_coercion;