async-graphql/src/lib.rs

1255 lines
53 KiB
Rust
Raw Normal View History

2020-05-25 21:37:46 +00:00
//! # A GraphQL server library implemented in Rust
2020-03-01 13:56:14 +00:00
//!
//! <div align="center">
//! <!-- CI -->
2020-04-28 07:41:31 +00:00
//! <img src="https://github.com/async-graphql/async-graphql/workflows/CI/badge.svg" />
2020-04-05 08:22:13 +00:00
//! <!-- codecov -->
2020-09-20 05:34:49 +00:00
//! <img src="https://codecov.io/gh/async-graphql/async-graphql/branch/master/graph/badge.svg" />
2020-03-01 13:56:14 +00:00
//! <!-- Crates version -->
//! <a href="https://crates.io/crates/async-graphql">
//! <img src="https://img.shields.io/crates/v/async-graphql.svg?style=flat-square"
//! alt="Crates.io version" />
//! </a>
//! <!-- Downloads -->
//! <a href="https://crates.io/crates/async-graphql">
//! <img src="https://img.shields.io/crates/d/async-graphql.svg?style=flat-square"
//! alt="Download" />
//! </a>
//! <!-- docs.rs docs -->
//! <a href="https://docs.rs/async-graphql">
//! <img src="https://img.shields.io/badge/docs-latest-blue.svg?style=flat-square"
//! alt="docs.rs docs" />
//! </a>
2020-11-07 13:26:10 +00:00
//! <a href="https://github.com/rust-secure-code/safety-dance/">
//! <img src="https://img.shields.io/badge/unsafe-forbidden-success.svg?style=flat-square"
//! alt="Unsafe Rust forbidden" />
//! </a>
2020-03-01 13:56:14 +00:00
//! </div>
//!
//! ## Documentation
//!
//! * [Feature Comparison](https://github.com/async-graphql/async-graphql/blob/master/feature-comparison.md)
2020-05-10 01:41:13 +00:00
//! * [Book](https://async-graphql.github.io/async-graphql/en/index.html)
//! * [中文文档](https://async-graphql.github.io/async-graphql/zh-CN/index.html)
//! * [Docs](https://docs.rs/async-graphql)
2020-04-28 07:41:31 +00:00
//! * [GitHub repository](https://github.com/async-graphql/async-graphql)
2020-03-01 13:56:14 +00:00
//! * [Cargo package](https://crates.io/crates/async-graphql)
2021-11-03 10:42:41 +00:00
//! * Minimum supported Rust version: 1.56.1 or later
2020-03-01 13:56:14 +00:00
//!
2020-03-04 06:27:00 +00:00
//! ## Features
//!
2020-07-07 08:41:29 +00:00
//! * Fully supports async/await
2020-03-17 11:11:14 +00:00
//! * Type safety
//! * Rustfmt friendly (Procedural Macro)
2020-07-07 08:41:29 +00:00
//! * Custom scalars
2020-03-17 11:11:14 +00:00
//! * Minimal overhead
2021-08-23 15:16:31 +00:00
//! * Easy integration ([poem](https://crates.io/crates/poem), actix_web, tide, warp, rocket ...)
//! * File upload (Multipart request)
2020-07-07 08:41:29 +00:00
//! * Subscriptions (WebSocket transport)
//! * Custom extensions
2020-03-26 03:34:28 +00:00
//! * Apollo Tracing extension
//! * Limit query complexity/depth
2020-03-31 03:19:18 +00:00
//! * Error Extensions
2020-04-10 02:26:08 +00:00
//! * Apollo Federation
2020-09-17 08:39:55 +00:00
//! * Batch Queries
2020-09-30 03:44:18 +00:00
//! * Apollo Persisted Queries
2020-03-04 06:27:00 +00:00
//!
//! ## Crate features
2020-09-26 03:25:21 +00:00
//!
//! This crate offers the following features, all of which are not activated by default:
2020-12-15 07:12:05 +00:00
//!
2020-09-26 03:25:21 +00:00
//! - `apollo_tracing`: Enable the [Apollo tracing extension](extensions/struct.ApolloTracing.html).
2020-09-30 03:44:18 +00:00
//! - `apollo_persisted_queries`: Enable the [Apollo persisted queries extension](extensions/apollo_persisted_queries/struct.ApolloPersistedQueries.html).
2020-09-26 03:25:21 +00:00
//! - `log`: Enable the [logger extension](extensions/struct.Logger.html).
//! - `tracing`: Enable the [tracing extension](extensions/struct.Tracing.html).
//! - `opentelemetry`: Enable the [OpenTelemetry extension](extensions/struct.OpenTelemetry.html).
2020-09-26 03:25:21 +00:00
//! - `unblock`: Support [asynchronous reader for Upload](types/struct.Upload.html)
//! - `bson`: Integrate with the [`bson` crate](https://crates.io/crates/bson).
//! - `chrono`: Integrate with the [`chrono` crate](https://crates.io/crates/chrono).
//! - `chrono-tz`: Integrate with the [`chrono-tz` crate](https://crates.io/crates/chrono-tz).
//! - `url`: Integrate with the [`url` crate](https://crates.io/crates/url).
//! - `uuid`: Integrate with the [`uuid` crate](https://crates.io/crates/uuid).
2020-12-15 07:12:05 +00:00
//! - `string_number`: Enable the [StringNumber](types/struct.StringNumber.html).
2020-12-21 06:21:10 +00:00
//! - `dataloader`: Support [DataLoader](dataloader/struct.DataLoader.html).
2021-07-01 20:52:37 +00:00
//! - `decimal`: Integrate with the [`rust_decimal` crate](https://crates.io/crates/rust_decimal).
2021-09-02 11:39:45 +00:00
//! - `cbor`: Support for [serde_cbor](https://crates.io/crates/serde_cbor).
2020-09-26 03:25:21 +00:00
//!
2020-03-18 03:15:02 +00:00
//! ## Integrations
//!
//! * Actix-web [async-graphql-actix_web](https://crates.io/crates/async-graphql-actix-web)
2020-04-14 03:44:49 +00:00
//! * Warp [async-graphql-warp](https://crates.io/crates/async-graphql-warp)
2020-05-02 02:46:02 +00:00
//! * Tide [async-graphql-tide](https://crates.io/crates/async-graphql-tide)
2020-03-18 03:15:02 +00:00
//!
2020-03-04 06:27:00 +00:00
//! ## License
//!
//! Licensed under either of
//!
//! * Apache License, Version 2.0,
2020-09-15 18:32:13 +00:00
//! (./LICENSE-APACHE or <http://www.apache.org/licenses/LICENSE-2.0>)
//! * MIT license (./LICENSE-MIT or <http://opensource.org/licenses/MIT>)
2020-03-04 06:27:00 +00:00
//! at your option.
//!
2020-03-01 13:56:14 +00:00
//! ## References
//!
//! * [GraphQL](https://graphql.org)
2020-03-20 03:56:08 +00:00
//! * [GraphQL Multipart Request](https://github.com/jaydenseric/graphql-multipart-request-spec)
//! * [GraphQL Cursor Connections Specification](https://facebook.github.io/relay/graphql/connections.htm)
//! * [GraphQL over WebSocket Protocol](https://github.com/apollographql/subscriptions-transport-ws/blob/master/PROTOCOL.md)
2020-03-26 07:27:35 +00:00
//! * [Apollo Tracing](https://github.com/apollographql/apollo-tracing)
2020-04-10 02:28:27 +00:00
//! * [Apollo Federation](https://www.apollographql.com/docs/apollo-server/federation/introduction)
//!
//! ## Examples
//!
2020-10-16 01:21:16 +00:00
//! All examples are in the [sub-repository](https://github.com/async-graphql/examples), located in the examples directory.
//!
//! **Run an example:**
//!
//! ```shell
//! git submodule update # update the examples repo
//! cd examples && cargo run --bin [name]
//! ```
//!
//! ## Benchmarks
//!
2020-06-02 00:57:45 +00:00
//! Ensure that there is no CPU-heavy process in background!
//!
//! ```shell script
2020-06-02 00:57:45 +00:00
//! cd benchmark
//! cargo bench
//! ```
//!
//! Now a HTML report is available at `benchmark/target/criterion/report`.
2020-06-02 00:57:45 +00:00
//!
2020-03-20 03:56:08 +00:00
#![deny(clippy::all)]
// #![deny(clippy::pedantic)]
#![deny(clippy::inefficient_to_string)]
#![deny(clippy::match_wildcard_for_single_variants)]
#![allow(clippy::module_name_repetitions)]
#![allow(clippy::similar_names)]
#![allow(clippy::if_not_else)]
#![allow(clippy::doc_markdown)]
#![allow(clippy::must_use_candidate)]
#![allow(clippy::missing_errors_doc)]
#![allow(clippy::needless_pass_by_value)]
#![deny(clippy::redundant_closure_for_method_calls)]
#![allow(clippy::option_if_let_else)]
#![allow(clippy::match_same_arms)]
#![allow(clippy::default_trait_access)]
#![allow(clippy::map_flatten)]
#![allow(clippy::map_unwrap_or)]
#![allow(clippy::explicit_iter_loop)]
#![allow(clippy::too_many_lines)]
#![allow(clippy::cast_sign_loss)]
#![allow(clippy::unused_self)]
#![allow(clippy::cast_lossless)]
#![allow(clippy::cast_possible_truncation)]
#![allow(clippy::implicit_hasher)]
// #![deny(clippy::nursery)]
#![allow(clippy::use_self)]
#![allow(clippy::missing_const_for_fn)]
#![allow(clippy::needless_borrow)]
#![allow(clippy::future_not_send)]
#![allow(clippy::redundant_pub_crate)]
#![allow(clippy::cognitive_complexity)]
#![allow(clippy::useless_let_if_seq)]
2020-03-20 03:56:08 +00:00
#![warn(missing_docs)]
#![allow(clippy::trivially_copy_pass_by_ref)]
2021-03-26 13:07:45 +00:00
#![allow(clippy::upper_case_acronyms)]
2020-05-20 00:18:28 +00:00
#![recursion_limit = "256"]
2020-05-29 09:29:15 +00:00
#![forbid(unsafe_code)]
#![cfg_attr(docsrs, feature(doc_cfg))]
2020-03-01 13:56:14 +00:00
2020-03-03 03:48:00 +00:00
mod base;
2020-03-01 10:54:34 +00:00
mod error;
2020-05-14 14:13:28 +00:00
mod look_ahead;
2020-03-03 11:15:18 +00:00
mod model;
2020-09-10 08:39:43 +00:00
mod request;
mod response;
2020-03-03 11:15:18 +00:00
mod schema;
2020-03-17 09:26:59 +00:00
mod subscription;
2020-03-08 12:35:36 +00:00
mod validation;
2020-03-01 10:54:34 +00:00
pub mod context;
2020-12-20 13:15:56 +00:00
#[cfg(feature = "dataloader")]
2021-03-22 05:27:24 +00:00
#[cfg_attr(docsrs, doc(cfg(feature = "dataloader")))]
2020-12-20 13:15:56 +00:00
pub mod dataloader;
2020-10-15 05:56:17 +00:00
pub mod extensions;
2020-05-01 23:57:34 +00:00
pub mod guard;
2020-09-19 05:14:59 +00:00
pub mod http;
pub mod resolver_utils;
2020-09-13 09:38:19 +00:00
pub mod types;
2020-09-14 01:46:22 +00:00
pub mod validators;
2020-03-21 01:32:13 +00:00
#[doc(hidden)]
2020-09-19 05:14:59 +00:00
pub mod registry;
#[doc(hidden)]
pub use async_stream;
#[doc(hidden)]
2020-09-14 01:46:22 +00:00
pub use async_trait;
#[doc(hidden)]
pub use context::ContextSelectionSet;
#[doc(hidden)]
2020-10-16 06:49:22 +00:00
pub use futures_util;
#[doc(hidden)]
pub use indexmap;
#[doc(hidden)]
pub use static_assertions;
#[doc(hidden)]
2020-09-19 05:14:59 +00:00
pub use subscription::SubscriptionType;
2020-03-01 10:54:34 +00:00
2020-09-19 05:14:59 +00:00
pub use async_graphql_parser as parser;
pub use async_graphql_value::{
2020-10-12 01:28:51 +00:00
from_value, to_value, value, ConstValue as Value, DeserializerError, Name, Number,
SerializerError, Variables,
};
2020-09-29 23:45:48 +00:00
pub use base::{
2021-03-17 12:51:30 +00:00
ComplexObject, Description, InputObjectType, InputType, InterfaceType, ObjectType, OutputType,
Type, UnionType,
2020-09-29 23:45:48 +00:00
};
2020-04-14 01:53:17 +00:00
pub use error::{
2021-11-04 06:30:29 +00:00
Error, ErrorExtensionValues, ErrorExtensions, Failure, InputValueError, InputValueResult,
2020-10-10 02:32:43 +00:00
ParseRequestError, PathSegment, Result, ResultExt, ServerError, ServerResult,
2020-04-14 01:53:17 +00:00
};
2020-05-14 14:13:28 +00:00
pub use look_ahead::Lookahead;
2020-03-22 08:45:59 +00:00
pub use registry::CacheControl;
2020-09-17 08:39:55 +00:00
pub use request::{BatchRequest, Request};
#[doc(no_inline)]
pub use resolver_utils::{ContainerType, EnumType, ScalarType};
2020-09-17 08:39:55 +00:00
pub use response::{BatchResponse, Response};
pub use schema::{Schema, SchemaBuilder, SchemaEnv};
2020-12-18 15:58:03 +00:00
pub use validation::{ValidationMode, ValidationResult, VisitorContext};
2020-03-02 00:24:49 +00:00
2020-10-15 05:56:17 +00:00
pub use context::*;
2020-09-19 05:14:59 +00:00
#[doc(no_inline)]
pub use parser::{Pos, Positioned};
2020-09-23 19:23:15 +00:00
pub use types::*;
2020-09-19 05:14:59 +00:00
/// An alias of [async_graphql::Error](struct.Error.html). Present for backward compatibility
/// reasons.
pub type FieldError = Error;
/// An alias of [async_graphql::Result](type.Result.html). Present for backward compatibility
/// reasons.
pub type FieldResult<T> = Result<T>;
/// Define a GraphQL object with methods
///
/// *[See also the Book](https://async-graphql.github.io/async-graphql/en/define_complex_object.html).*
///
/// All methods are converted to camelCase.
2020-03-09 10:05:52 +00:00
///
/// # Macro parameters
///
2020-03-22 08:45:59 +00:00
/// | Attribute | description | Type | Optional |
/// |---------------|---------------------------|----------|----------|
/// | name | Object name | string | Y |
2020-10-14 09:08:57 +00:00
/// | rename_fields | Rename all the fields according to the given case convention. The possible values are "lowercase", "UPPERCASE", "PascalCase", "camelCase", "snake_case", "SCREAMING_SNAKE_CASE".| string | Y |
/// | rename_args | Rename all the arguments according to the given case convention. The possible values are "lowercase", "UPPERCASE", "PascalCase", "camelCase", "snake_case", "SCREAMING_SNAKE_CASE".| string | Y |
2020-03-22 08:45:59 +00:00
/// | cache_control | Object cache control | [`CacheControl`](struct.CacheControl.html) | Y |
2020-04-09 14:03:09 +00:00
/// | extends | Add fields to an entity that's defined in another service | bool | Y |
2020-10-27 01:19:00 +00:00
/// | use_type_description | Specifies that the description of the type is on the type declaration. [`Description`]()(derive.Description.html) | bool | Y |
2020-12-15 02:05:44 +00:00
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
2020-03-09 10:05:52 +00:00
///
/// # Field parameters
///
2020-03-22 08:45:59 +00:00
/// | Attribute | description | Type | Optional |
/// |---------------|---------------------------|----------|----------|
2020-09-28 09:44:00 +00:00
/// | skip | Skip this field | bool | Y |
2020-03-22 08:45:59 +00:00
/// | name | Field name | string | Y |
/// | desc | Field description | string | Y |
/// | deprecation | Field deprecated | bool | Y |
2020-03-22 08:45:59 +00:00
/// | deprecation | Field deprecation reason | string | Y |
/// | cache_control | Field cache control | [`CacheControl`](struct.CacheControl.html) | Y |
2020-04-09 14:03:09 +00:00
/// | external | Mark a field as owned by another service. This allows service A to use fields from service B while also knowing at runtime the types of that field. | bool | Y |
/// | provides | Annotate the expected returned fieldset from a field on a base type that is guaranteed to be selectable by the gateway. | string | Y |
/// | requires | Annotate the required input fieldset from a base type for a resolver. It is used to develop a query plan where the required fields may not be needed by the client, but the service may need additional information from other services. | string | Y |
2020-05-01 23:57:34 +00:00
/// | guard | Field of guard | [`Guard`](guard/trait.Guard.html) | Y |
2020-12-15 02:05:44 +00:00
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
2020-03-09 10:05:52 +00:00
///
/// # Field argument parameters
///
2020-07-07 08:41:29 +00:00
/// | Attribute | description | Type | Optional |
/// |--------------|------------------------------------------|------------ |----------|
/// | name | Argument name | string | Y |
/// | desc | Argument description | string | Y |
/// | default | Use `Default::default` for default value | none | Y |
/// | default | Argument default value | literal | Y |
/// | default_with | Expression to generate default value | code string | Y |
/// | derived | Generate derived fields *[See also the Book](https://async-graphql.github.io/async-graphql/en/derived_fields.html).* | object | Y |
2020-07-07 08:41:29 +00:00
/// | validator | Input value validator | [`InputValueValidator`](validators/trait.InputValueValidator.html) | Y |
2020-12-18 11:31:36 +00:00
/// | complexity | Custom field complexity. *[See also the Book](https://async-graphql.github.io/async-graphql/en/depth_and_complexity.html).* | bool | Y |
/// | complexity | Custom field complexity. | string | Y |
2020-12-15 02:05:44 +00:00
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
/// | secret | Mark this field as a secret, it will not output the actual value in the log. | bool | Y |
/// | serial | Resolve each field sequentially. | bool | Y |
2020-12-18 11:31:36 +00:00
/// | key | Is entity key(for Federation) | bool | Y |
2020-03-09 10:05:52 +00:00
///
/// # Derived argument parameters
///
/// | Attribute | description | Type | Optional |
/// |--------------|------------------------------------------|------------ |----------|
/// | name | Generated derived field name | string | N |
/// | into | Type to derived an into | string | Y |
/// | with | Function to apply to manage advanced use cases | string| Y |
///
/// # Valid field return types
2020-03-09 10:05:52 +00:00
///
/// - Scalar values, such as `i32` and `bool`. `usize`, `isize`, `u128` and `i128` are not
/// supported
/// - `Vec<T>`, such as `Vec<i32>`
/// - Slices, such as `&[i32]`
/// - `Option<T>`, such as `Option<i32>`
2020-09-28 09:44:00 +00:00
/// - `BTree<T>`, `HashMap<T>`, `HashSet<T>`, `BTreeSet<T>`, `LinkedList<T>`, `VecDeque<T>`
/// - GraphQL objects.
/// - GraphQL enums.
/// - References to any of the above types, such as `&i32` or `&Option<String>`.
Rework errors This completely overhauls the error system used in async-graphql. - `Error` has been renamed to `ServerError` and `FieldError` has been renamed to just `Error`. This is because `FieldError` is by far the most common error that users will have to use so it makes sense to use the most obvious error name. Also, the current name didn't make sense as it was used for things other than field errors, such as the data callback for websockets. - `ServerError` has been made completely opaque. Before it was an enum of all the possible errors, but now it just contains an error message, the locations, the path and extensions. It is a shame that we lose information, it makes more sense as _conceptually_ GraphQL does not provide that information. It also frees us to change the internals of async-graphql a lot more. - The path of errors is no longer an opaque JSON value but a regular type, `Vec<PathSegment>`. The type duplication of `PathSegment` and `QueryPathSegment` is unfortunate, I plan to work on this in the future. - Now that `ServerError` is opaque, `RuleError` has been removed from the public API, making it simpler. - Additionally `QueryError` has been completely removed. Instead the error messages are constructed ad-hoc; I took care to never repeat an error message. - Instead of constructing field-not-found errors inside the implementations of field resolvers they now return `Option`s, where a `None` value is representative of the field not being found. - As an unfortunate consequence of the last change, self-referential types based on the output of a subscription resolver can no longer be created. This does not mean anything for users, but causes lifetime issues in the implementation of merged objects. I fixed it with a bit of a hack, but this'll have to be looked into further. - `InputValueError` now has a generic parameter - it's kind of weird but it's necessary for ergonomics. It also improves error messages. - The `ErrorExtensions` trait has been removed. I didn't think the `extend` method was necessary since `From` impls exist. But the ergonomics are still there with a new trait `ExtendError`, which is implemented for both errors and results. - `Response` now supports serializing multiple errors. This allows for nice things like having multiple validation errors not be awkwardly shoved into a single error. - When an error occurs in execution, data is sent as `null`. This is slightly more compliant with the spec but the algorithm described in <https://spec.graphql.org/June2018/#sec-Errors-and-Non-Nullability> has yet to be implemented.
2020-09-29 19:06:44 +00:00
/// - `Result<T, E>`, such as `Result<i32, E>`
2020-03-09 10:05:52 +00:00
///
/// # Context
///
/// You can define a context as an argument to a method, and the context should be the first argument to the method.
///
/// ```ignore
/// #[Object]
2020-03-27 02:20:20 +00:00
/// impl QueryRoot {
2020-03-09 10:05:52 +00:00
/// async fn value(&self, ctx: &Context<'_>) -> { ... }
/// }
/// ```
///
/// # Examples
///
2021-01-10 03:21:47 +00:00
/// Implements GraphQL Object for struct.
///
2020-03-09 10:05:52 +00:00
/// ```rust
/// use async_graphql::*;
///
2020-03-27 02:20:20 +00:00
/// struct QueryRoot {
2020-03-09 10:05:52 +00:00
/// value: i32,
/// }
///
/// #[Object]
2020-03-27 02:20:20 +00:00
/// impl QueryRoot {
2020-09-28 09:44:00 +00:00
/// /// value
2020-03-09 10:05:52 +00:00
/// async fn value(&self) -> i32 {
/// self.value
/// }
///
2020-09-28 09:44:00 +00:00
/// /// reference value
2020-03-09 10:05:52 +00:00
/// async fn value_ref(&self) -> &i32 {
/// &self.value
/// }
///
2020-09-28 09:44:00 +00:00
/// /// value with error
Rework errors This completely overhauls the error system used in async-graphql. - `Error` has been renamed to `ServerError` and `FieldError` has been renamed to just `Error`. This is because `FieldError` is by far the most common error that users will have to use so it makes sense to use the most obvious error name. Also, the current name didn't make sense as it was used for things other than field errors, such as the data callback for websockets. - `ServerError` has been made completely opaque. Before it was an enum of all the possible errors, but now it just contains an error message, the locations, the path and extensions. It is a shame that we lose information, it makes more sense as _conceptually_ GraphQL does not provide that information. It also frees us to change the internals of async-graphql a lot more. - The path of errors is no longer an opaque JSON value but a regular type, `Vec<PathSegment>`. The type duplication of `PathSegment` and `QueryPathSegment` is unfortunate, I plan to work on this in the future. - Now that `ServerError` is opaque, `RuleError` has been removed from the public API, making it simpler. - Additionally `QueryError` has been completely removed. Instead the error messages are constructed ad-hoc; I took care to never repeat an error message. - Instead of constructing field-not-found errors inside the implementations of field resolvers they now return `Option`s, where a `None` value is representative of the field not being found. - As an unfortunate consequence of the last change, self-referential types based on the output of a subscription resolver can no longer be created. This does not mean anything for users, but causes lifetime issues in the implementation of merged objects. I fixed it with a bit of a hack, but this'll have to be looked into further. - `InputValueError` now has a generic parameter - it's kind of weird but it's necessary for ergonomics. It also improves error messages. - The `ErrorExtensions` trait has been removed. I didn't think the `extend` method was necessary since `From` impls exist. But the ergonomics are still there with a new trait `ExtendError`, which is implemented for both errors and results. - `Response` now supports serializing multiple errors. This allows for nice things like having multiple validation errors not be awkwardly shoved into a single error. - When an error occurs in execution, data is sent as `null`. This is slightly more compliant with the spec but the algorithm described in <https://spec.graphql.org/June2018/#sec-Errors-and-Non-Nullability> has yet to be implemented.
2020-09-29 19:06:44 +00:00
/// async fn value_with_error(&self) -> Result<i32> {
2020-03-09 10:05:52 +00:00
/// Ok(self.value)
/// }
///
2020-09-28 09:44:00 +00:00
/// async fn value_with_arg(&self, #[graphql(default = 1)] a: i32) -> i32 {
2020-03-09 10:05:52 +00:00
/// a
/// }
/// }
///
/// tokio::runtime::Runtime::new().unwrap().block_on(async move {
/// let schema = Schema::new(QueryRoot { value: 10 }, EmptyMutation, EmptySubscription);
2020-04-02 04:53:53 +00:00
/// let res = schema.execute(r#"{
2020-03-09 10:05:52 +00:00
/// value
/// valueRef
/// valueWithError
/// valueWithArg1: valueWithArg
/// valueWithArg2: valueWithArg(a: 99)
/// }"#).await.into_result().unwrap().data;
/// assert_eq!(res, value!({
2020-03-09 10:05:52 +00:00
/// "value": 10,
/// "valueRef": 10,
/// "valueWithError": 10,
/// "valueWithArg1": 1,
/// "valueWithArg2": 99
/// }));
2020-08-10 06:57:45 +00:00
/// });
2020-03-09 10:05:52 +00:00
/// ```
2021-01-10 03:21:47 +00:00
///
/// # Examples
///
/// Implements GraphQL Object for trait object.
///
/// ```rust
/// use async_graphql::*;
///
/// trait MyTrait: Send + Sync {
/// fn name(&self) -> &str;
/// }
///
/// #[Object]
/// impl dyn MyTrait {
/// #[graphql(name = "name")]
/// async fn gql_name(&self) -> &str {
/// self.name()
/// }
/// }
///
/// struct MyObj(String);
///
/// impl MyTrait for MyObj {
/// fn name(&self) -> &str {
/// &self.0
/// }
/// }
///
/// struct QueryRoot;
///
/// #[Object]
/// impl QueryRoot {
/// async fn objs(&self) -> Vec<Box<dyn MyTrait>> {
/// vec![
/// Box::new(MyObj("a".to_string())),
/// Box::new(MyObj("b".to_string())),
/// ]
/// }
/// }
///
/// tokio::runtime::Runtime::new().unwrap().block_on(async move {
2021-01-10 03:21:47 +00:00
/// let schema = Schema::new(QueryRoot, EmptyMutation, EmptySubscription);
/// let res = schema.execute("{ objs { name } }").await.into_result().unwrap().data;
/// assert_eq!(res, value!({
/// "objs": [
/// { "name": "a" },
/// { "name": "b" },
/// ]
/// }));
/// });
/// ```
pub use async_graphql_derive::Object;
2020-03-09 10:05:52 +00:00
/// Define a GraphQL object with fields
///
/// *[See also the Book](https://async-graphql.github.io/async-graphql/en/define_simple_object.html).*
///
/// Similar to `Object`, but defined on a structure that automatically generates getters for all fields. For a list of valid field types, see [`Object`](attr.Object.html). All fields are converted to camelCase.
2020-03-27 02:20:20 +00:00
///
/// # Macro parameters
///
/// | Attribute | description | Type | Optional |
/// |---------------|---------------------------|----------|----------|
/// | name | Object name | string | Y |
2020-10-14 09:08:57 +00:00
/// | rename_fields | Rename all the fields according to the given case convention. The possible values are "lowercase", "UPPERCASE", "PascalCase", "camelCase", "snake_case", "SCREAMING_SNAKE_CASE".| string | Y |
2020-03-27 02:20:20 +00:00
/// | cache_control | Object cache control | [`CacheControl`](struct.CacheControl.html) | Y |
2020-09-28 09:44:00 +00:00
/// | extends | Add fields to an entity that's defined in another service | bool | Y |
2020-12-15 02:05:44 +00:00
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
/// | concretes | Specify how the concrete type of the generic SimpleObject should be implemented. *[See also the Book](https://async-graphql.github.io/async-graphql/en/define_simple_object.html#generic-simpleobjects) | ConcreteType | Y |
/// | serial | Resolve each field sequentially. | bool | Y |
2020-03-27 02:20:20 +00:00
///
/// # Field parameters
///
/// | Attribute | description | Type | Optional |
/// |---------------|---------------------------|----------|----------|
2020-09-28 09:44:00 +00:00
/// | skip | Skip this field | bool | Y |
2020-03-27 02:20:20 +00:00
/// | name | Field name | string | Y |
/// | deprecation | Field deprecated | bool | Y |
2020-03-27 02:20:20 +00:00
/// | deprecation | Field deprecation reason | string | Y |
2021-10-25 10:56:33 +00:00
/// | derived | Generate derived fields *[See also the Book](https://async-graphql.github.io/async-graphql/en/derived_fields.html).* | object | Y |
/// | owned | Field resolver return a ownedship value | bool | Y |
2020-03-27 02:20:20 +00:00
/// | cache_control | Field cache control | [`CacheControl`](struct.CacheControl.html) | Y |
2020-04-26 02:12:01 +00:00
/// | external | Mark a field as owned by another service. This allows service A to use fields from service B while also knowing at runtime the types of that field. | bool | Y |
/// | provides | Annotate the expected returned fieldset from a field on a base type that is guaranteed to be selectable by the gateway. | string | Y |
/// | requires | Annotate the required input fieldset from a base type for a resolver. It is used to develop a query plan where the required fields may not be needed by the client, but the service may need additional information from other services. | string | Y |
2020-05-01 23:57:34 +00:00
/// | guard | Field of guard | [`Guard`](guard/trait.Guard.html) | Y |
2020-12-15 02:05:44 +00:00
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
2020-03-27 02:20:20 +00:00
///
2021-10-25 10:56:33 +00:00
/// # Derived argument parameters
///
/// | Attribute | description | Type | Optional |
/// |--------------|------------------------------------------|------------ |----------|
/// | name | Generated derived field name | string | N |
/// | into | Type to derived an into | string | Y |
/// | owned | Field resolver return a ownedship value | bool | Y |
/// | with | Function to apply to manage advanced use cases | string| Y |
2021-10-25 10:56:33 +00:00
///
///
2020-03-27 02:20:20 +00:00
/// # Examples
///
/// ```rust
/// use async_graphql::*;
///
/// #[derive(SimpleObject)]
2020-03-27 02:20:20 +00:00
/// struct QueryRoot {
/// value: i32,
/// }
///
/// tokio::runtime::Runtime::new().unwrap().block_on(async move {
2020-03-27 02:20:20 +00:00
/// let schema = Schema::new(QueryRoot{ value: 10 }, EmptyMutation, EmptySubscription);
/// let res = schema.execute("{ value }").await.into_result().unwrap().data;
/// assert_eq!(res, value!({
2020-03-27 02:20:20 +00:00
/// "value": 10,
/// }));
2020-08-10 06:57:45 +00:00
/// });
2020-03-27 02:20:20 +00:00
/// ```
pub use async_graphql_derive::SimpleObject;
2021-03-17 12:51:30 +00:00
/// Define a complex GraphQL object for SimpleObject's complex field resolver.
///
/// *[See also the Book](https://async-graphql.github.io/async-graphql/en/define_simple_object.html).*
///
/// Sometimes most of the fields of a GraphQL object simply return the value of the structure member, but a few
/// fields are calculated. Usually we use the `Object` macro to define such a GraphQL object.
///
/// But this can be done more beautifully with the `ComplexObject` macro. We can use the `SimpleObject` macro to define
/// some simple fields, and use the `ComplexObject` macro to define some other fields that need to be calculated.
///
/// # Macro parameters
///
/// | Attribute | description | Type | Optional |
/// |---------------|---------------------------|----------|----------|
/// | name | Object name | string | Y |
/// | rename_fields | Rename all the fields according to the given case convention. The possible values are "lowercase", "UPPERCASE", "PascalCase", "camelCase", "snake_case", "SCREAMING_SNAKE_CASE".| string | Y |
/// | rename_args | Rename all the arguments according to the given case convention. The possible values are "lowercase", "UPPERCASE", "PascalCase", "camelCase", "snake_case", "SCREAMING_SNAKE_CASE".| string | Y |
///
/// # Field parameters
///
/// | Attribute | description | Type | Optional |
/// |---------------|---------------------------|----------|----------|
/// | skip | Skip this field | bool | Y |
/// | name | Field name | string | Y |
/// | deprecation | Field deprecated | bool | Y |
/// | deprecation | Field deprecation reason | string | Y |
/// | derived | Generate derived fields *[See also the Book](https://async-graphql.github.io/async-graphql/en/derived_fields.html).* | object | Y |
2021-03-17 12:51:30 +00:00
/// | cache_control | Field cache control | [`CacheControl`](struct.CacheControl.html) | Y |
/// | external | Mark a field as owned by another service. This allows service A to use fields from service B while also knowing at runtime the types of that field. | bool | Y |
/// | provides | Annotate the expected returned fieldset from a field on a base type that is guaranteed to be selectable by the gateway. | string | Y |
/// | requires | Annotate the required input fieldset from a base type for a resolver. It is used to develop a query plan where the required fields may not be needed by the client, but the service may need additional information from other services. | string | Y |
/// | guard | Field of guard | [`Guard`](guard/trait.Guard.html) | Y |
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
/// | secret | Mark this field as a secret, it will not output the actual value in the log. | bool | Y |
2021-03-17 12:51:30 +00:00
///
/// # Derived argument parameters
///
/// | Attribute | description | Type | Optional |
/// |--------------|------------------------------------------|------------ |----------|
/// | name | Generated derived field name | string | N |
/// | into | Type to derived an into | string | Y |
/// | with | Function to apply to manage advanced use cases | string| Y |
///
2021-03-17 12:51:30 +00:00
/// # Examples
///
/// ```rust
/// use async_graphql::*;
///
/// #[derive(SimpleObject)]
/// #[graphql(complex)] // NOTE: If you want the `ComplexObject` macro to take effect, this `complex` attribute is required.
/// struct MyObj {
/// a: i32,
/// b: i32,
/// }
///
/// #[ComplexObject]
/// impl MyObj {
/// async fn c(&self) -> i32 {
/// self.a + self.b
/// }
/// }
///
/// struct QueryRoot;
///
/// #[Object]
/// impl QueryRoot {
/// async fn obj(&self) -> MyObj {
/// MyObj { a: 10, b: 20 }
/// }
/// }
///
/// tokio::runtime::Runtime::new().unwrap().block_on(async move {
/// let schema = Schema::new(QueryRoot, EmptyMutation, EmptySubscription);
/// let res = schema.execute("{ obj { a b c } }").await.into_result().unwrap().data;
/// assert_eq!(res, value!({
/// "obj": {
/// "a": 10,
/// "b": 20,
/// "c": 30,
/// },
/// }));
/// });
/// ```
pub use async_graphql_derive::ComplexObject;
2020-03-09 10:05:52 +00:00
/// Define a GraphQL enum
///
/// *[See also the Book](https://async-graphql.github.io/async-graphql/en/define_enum.html).*
///
2020-03-09 10:05:52 +00:00
/// # Macro parameters
///
2020-10-14 09:08:57 +00:00
/// | Attribute | description | Type | Optional |
/// |--------------|---------------------------|----------|----------|
/// | name | Enum name | string | Y |
/// | rename_items | Rename all the fields according to the given case convention. The possible values are "lowercase", "UPPERCASE", "PascalCase", "camelCase", "snake_case", "SCREAMING_SNAKE_CASE".| string | Y |
/// | remote | Derive a remote enum | string | Y |
2020-12-15 02:05:44 +00:00
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
2020-03-09 10:05:52 +00:00
///
/// # Item parameters
///
/// | Attribute | description | Type | Optional |
/// |-------------|---------------------------|----------|----------|
/// | name | Item name | string | Y |
/// | deprecation | Item deprecated | bool | Y |
2020-03-09 10:05:52 +00:00
/// | deprecation | Item deprecation reason | string | Y |
2020-12-15 02:05:44 +00:00
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
2020-03-09 10:05:52 +00:00
///
/// # Examples
///
/// ```rust
/// use async_graphql::*;
///
/// #[derive(Enum, Copy, Clone, Eq, PartialEq)]
2020-03-09 10:05:52 +00:00
/// enum MyEnum {
/// A,
2020-09-28 09:44:00 +00:00
/// #[graphql(name = "b")] B,
2020-03-09 10:05:52 +00:00
/// }
///
2020-03-27 02:20:20 +00:00
/// struct QueryRoot {
2020-03-09 10:05:52 +00:00
/// value1: MyEnum,
/// value2: MyEnum,
/// }
///
/// #[Object]
2020-03-27 02:20:20 +00:00
/// impl QueryRoot {
2020-09-28 09:44:00 +00:00
/// /// value1
2020-03-09 10:05:52 +00:00
/// async fn value1(&self) -> MyEnum {
/// self.value1
/// }
///
2020-09-28 09:44:00 +00:00
/// /// value2
2020-03-09 10:05:52 +00:00
/// async fn value2(&self) -> MyEnum {
/// self.value2
/// }
/// }
///
/// tokio::runtime::Runtime::new().unwrap().block_on(async move {
2020-03-27 02:20:20 +00:00
/// let schema = Schema::new(QueryRoot{ value1: MyEnum::A, value2: MyEnum::B }, EmptyMutation, EmptySubscription);
/// let res = schema.execute("{ value1 value2 }").await.into_result().unwrap().data;
/// assert_eq!(res, value!({ "value1": "A", "value2": "b" }));
2020-08-10 06:57:45 +00:00
/// });
2020-03-09 10:05:52 +00:00
/// ```
pub use async_graphql_derive::Enum;
2020-03-09 10:05:52 +00:00
/// Define a GraphQL input object
///
/// *[See also the Book](https://async-graphql.github.io/async-graphql/en/define_input_object.html).*
///
2020-03-09 10:05:52 +00:00
/// # Macro parameters
///
2020-10-14 09:08:57 +00:00
/// | Attribute | description | Type | Optional |
/// |---------------|---------------------------|----------|----------|
/// | name | Object name | string | Y |
/// | rename_fields | Rename all the fields according to the given case convention. The possible values are "lowercase", "UPPERCASE", "PascalCase", "camelCase", "snake_case", "SCREAMING_SNAKE_CASE".| string | Y |
2020-12-15 02:05:44 +00:00
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
2020-03-09 10:05:52 +00:00
///
/// # Field parameters
///
2020-09-28 09:44:00 +00:00
/// | Attribute | description | Type | Optional |
/// |--------------|------------------------------------------|-------------|----------|
/// | name | Field name | string | Y |
2020-07-07 08:41:29 +00:00
/// | default | Use `Default::default` for default value | none | Y |
/// | default | Argument default value | literal | Y |
/// | default_with | Expression to generate default value | code string | Y |
/// | validator | Input value validator | [`InputValueValidator`](validators/trait.InputValueValidator.html) | Y |
2020-09-28 09:44:00 +00:00
/// | flatten | Similar to serde (flatten) | boolean | Y |
/// | skip | Skip this field, use `Default::default` to get a default value for this field. | bool | Y |
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
/// | secret | Mark this field as a secret, it will not output the actual value in the log. | bool | Y |
2020-03-09 10:05:52 +00:00
///
/// # Examples
///
/// ```rust
/// use async_graphql::*;
///
/// #[derive(InputObject)]
2020-03-09 10:05:52 +00:00
/// struct MyInputObject {
/// a: i32,
2020-09-28 09:44:00 +00:00
/// #[graphql(default = 10)]
2020-03-09 10:05:52 +00:00
/// b: i32,
/// }
///
2020-03-27 02:20:20 +00:00
/// struct QueryRoot;
2020-03-09 10:05:52 +00:00
///
/// #[Object]
2020-03-27 02:20:20 +00:00
/// impl QueryRoot {
2020-09-28 09:44:00 +00:00
/// /// value
2020-03-09 10:05:52 +00:00
/// async fn value(&self, input: MyInputObject) -> i32 {
/// input.a * input.b
/// }
/// }
///
/// tokio::runtime::Runtime::new().unwrap().block_on(async move {
2020-03-27 02:20:20 +00:00
/// let schema = Schema::new(QueryRoot, EmptyMutation, EmptySubscription);
2020-04-02 04:53:53 +00:00
/// let res = schema.execute(r#"
2020-03-09 10:05:52 +00:00
/// {
/// value1: value(input:{a:9, b:3})
/// value2: value(input:{a:9})
/// }"#).await.into_result().unwrap().data;
/// assert_eq!(res, value!({ "value1": 27, "value2": 90 }));
2020-08-10 06:57:45 +00:00
/// });
2020-03-09 10:05:52 +00:00
/// ```
pub use async_graphql_derive::InputObject;
2020-03-09 10:05:52 +00:00
/// Define a GraphQL interface
///
/// *[See also the Book](https://async-graphql.github.io/async-graphql/en/define_interface.html).*
///
2020-03-09 10:05:52 +00:00
/// # Macro parameters
///
2020-10-14 09:08:57 +00:00
/// | Attribute | description | Type | Optional |
/// |---------------|---------------------------|----------|----------|
/// | name | Object name | string | Y |
/// | rename_fields | Rename all the fields according to the given case convention. The possible values are "lowercase", "UPPERCASE", "PascalCase", "camelCase", "snake_case", "SCREAMING_SNAKE_CASE".| string | Y |
/// | rename_args | Rename all the arguments according to the given case convention. The possible values are "lowercase", "UPPERCASE", "PascalCase", "camelCase", "snake_case", "SCREAMING_SNAKE_CASE".| string | Y |
/// | field | Fields of this Interface | InterfaceField | N |
2020-09-28 09:44:00 +00:00
/// | extends | Add fields to an entity that's defined in another service | bool | Y |
2020-12-15 02:05:44 +00:00
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
2020-03-09 10:05:52 +00:00
///
/// # Field parameters
///
/// | Attribute | description | Type | Optional |
/// |-------------|---------------------------|----------|----------|
/// | name | Field name | string | N |
/// | type | Field type | string | N |
2020-09-28 09:44:00 +00:00
/// | method | Rust resolver method name. If specified, `name` will not be camelCased in schema definition | string | Y |
2020-03-09 10:05:52 +00:00
/// | desc | Field description | string | Y |
/// | deprecation | Field deprecated | bool | Y |
2020-03-09 10:05:52 +00:00
/// | deprecation | Field deprecation reason | string | Y |
/// | arg | Field arguments | InterfaceFieldArgument | Y |
2020-10-14 09:08:57 +00:00
/// | external | Mark a field as owned by another service. This allows service A to use fields from service B while also knowing at runtime the types of that field. | bool | Y |
/// | provides | Annotate the expected returned fieldset from a field on a base type that is guaranteed to be selectable by the gateway. | string | Y |
/// | requires | Annotate the required input fieldset from a base type for a resolver. It is used to develop a query plan where the required fields may not be needed by the client, but the service may need additional information from other services. | string | Y |
2020-12-15 02:05:44 +00:00
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
2020-03-09 10:05:52 +00:00
///
/// # Field argument parameters
///
2020-07-07 08:41:29 +00:00
/// | Attribute | description | Type | Optional |
/// |--------------|------------------------------------------|-------------|----------|
/// | name | Argument name | string | N |
/// | type | Argument type | string | N |
/// | desc | Argument description | string | Y |
/// | default | Use `Default::default` for default value | none | Y |
/// | default | Argument default value | literal | Y |
/// | default_with | Expression to generate default value | code string | Y |
2020-12-15 02:05:44 +00:00
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
/// | secret | Mark this field as a secret, it will not output the actual value in the log. | bool | Y |
2020-03-09 10:05:52 +00:00
///
/// # Define an interface
///
/// Define TypeA, TypeB, TypeC... Implement the MyInterface
///
/// ```ignore
/// #[derive(Interface)]
2020-05-11 03:25:49 +00:00
/// enum MyInterface {
/// TypeA(TypeA),
/// TypeB(TypeB),
/// TypeC(TypeC),
/// ...
/// }
2020-03-09 10:05:52 +00:00
/// ```
///
/// # Fields
///
2020-05-02 02:46:02 +00:00
/// The type, name, and parameter fields of the interface must exactly match the type of the
Rework errors This completely overhauls the error system used in async-graphql. - `Error` has been renamed to `ServerError` and `FieldError` has been renamed to just `Error`. This is because `FieldError` is by far the most common error that users will have to use so it makes sense to use the most obvious error name. Also, the current name didn't make sense as it was used for things other than field errors, such as the data callback for websockets. - `ServerError` has been made completely opaque. Before it was an enum of all the possible errors, but now it just contains an error message, the locations, the path and extensions. It is a shame that we lose information, it makes more sense as _conceptually_ GraphQL does not provide that information. It also frees us to change the internals of async-graphql a lot more. - The path of errors is no longer an opaque JSON value but a regular type, `Vec<PathSegment>`. The type duplication of `PathSegment` and `QueryPathSegment` is unfortunate, I plan to work on this in the future. - Now that `ServerError` is opaque, `RuleError` has been removed from the public API, making it simpler. - Additionally `QueryError` has been completely removed. Instead the error messages are constructed ad-hoc; I took care to never repeat an error message. - Instead of constructing field-not-found errors inside the implementations of field resolvers they now return `Option`s, where a `None` value is representative of the field not being found. - As an unfortunate consequence of the last change, self-referential types based on the output of a subscription resolver can no longer be created. This does not mean anything for users, but causes lifetime issues in the implementation of merged objects. I fixed it with a bit of a hack, but this'll have to be looked into further. - `InputValueError` now has a generic parameter - it's kind of weird but it's necessary for ergonomics. It also improves error messages. - The `ErrorExtensions` trait has been removed. I didn't think the `extend` method was necessary since `From` impls exist. But the ergonomics are still there with a new trait `ExtendError`, which is implemented for both errors and results. - `Response` now supports serializing multiple errors. This allows for nice things like having multiple validation errors not be awkwardly shoved into a single error. - When an error occurs in execution, data is sent as `null`. This is slightly more compliant with the spec but the algorithm described in <https://spec.graphql.org/June2018/#sec-Errors-and-Non-Nullability> has yet to be implemented.
2020-09-29 19:06:44 +00:00
/// implementation interface, but Result can be omitted.
2020-03-09 10:05:52 +00:00
///
/// ```rust
/// use async_graphql::*;
///
/// struct TypeA {
/// value: i32,
/// }
///
/// #[Object]
2020-03-09 10:05:52 +00:00
/// impl TypeA {
/// /// Returns data borrowed from the context
Rework errors This completely overhauls the error system used in async-graphql. - `Error` has been renamed to `ServerError` and `FieldError` has been renamed to just `Error`. This is because `FieldError` is by far the most common error that users will have to use so it makes sense to use the most obvious error name. Also, the current name didn't make sense as it was used for things other than field errors, such as the data callback for websockets. - `ServerError` has been made completely opaque. Before it was an enum of all the possible errors, but now it just contains an error message, the locations, the path and extensions. It is a shame that we lose information, it makes more sense as _conceptually_ GraphQL does not provide that information. It also frees us to change the internals of async-graphql a lot more. - The path of errors is no longer an opaque JSON value but a regular type, `Vec<PathSegment>`. The type duplication of `PathSegment` and `QueryPathSegment` is unfortunate, I plan to work on this in the future. - Now that `ServerError` is opaque, `RuleError` has been removed from the public API, making it simpler. - Additionally `QueryError` has been completely removed. Instead the error messages are constructed ad-hoc; I took care to never repeat an error message. - Instead of constructing field-not-found errors inside the implementations of field resolvers they now return `Option`s, where a `None` value is representative of the field not being found. - As an unfortunate consequence of the last change, self-referential types based on the output of a subscription resolver can no longer be created. This does not mean anything for users, but causes lifetime issues in the implementation of merged objects. I fixed it with a bit of a hack, but this'll have to be looked into further. - `InputValueError` now has a generic parameter - it's kind of weird but it's necessary for ergonomics. It also improves error messages. - The `ErrorExtensions` trait has been removed. I didn't think the `extend` method was necessary since `From` impls exist. But the ergonomics are still there with a new trait `ExtendError`, which is implemented for both errors and results. - `Response` now supports serializing multiple errors. This allows for nice things like having multiple validation errors not be awkwardly shoved into a single error. - When an error occurs in execution, data is sent as `null`. This is slightly more compliant with the spec but the algorithm described in <https://spec.graphql.org/June2018/#sec-Errors-and-Non-Nullability> has yet to be implemented.
2020-09-29 19:06:44 +00:00
/// async fn value_a<'a>(&self, ctx: &'a Context<'_>) -> Result<&'a str> {
/// Ok(ctx.data::<String>()?.as_str())
2020-03-09 10:05:52 +00:00
/// }
///
/// /// Returns data borrowed self
/// async fn value_b(&self) -> &i32 {
/// &self.value
/// }
///
/// /// With parameters
/// async fn value_c(&self, a: i32, b: i32) -> i32 {
/// a + b
/// }
///
/// /// Disabled name transformation, don't forget "method" argument in interface!
2020-09-28 09:44:00 +00:00
/// #[graphql(name = "value_d")]
/// async fn value_d(&self) -> i32 {
/// &self.value + 1
/// }
2020-03-09 10:05:52 +00:00
/// }
///
/// #[derive(Interface)]
/// #[graphql(
2020-05-01 23:57:34 +00:00
/// field(name = "value_a", type = "&'ctx str"),
2020-03-09 10:05:52 +00:00
/// field(name = "value_b", type = "&i32"),
/// field(name = "value_c", type = "i32",
/// arg(name = "a", type = "i32"),
/// arg(name = "b", type = "i32")),
/// field(name = "value_d", method = "value_d", type = "i32"),
2020-03-09 10:05:52 +00:00
/// )]
2020-05-11 03:25:49 +00:00
/// enum MyInterface {
/// TypeA(TypeA)
/// }
2020-03-09 10:05:52 +00:00
///
/// struct QueryRoot;
///
/// #[Object]
2020-03-09 10:05:52 +00:00
/// impl QueryRoot {
/// async fn type_a(&self) -> MyInterface {
/// TypeA { value: 10 }.into()
/// }
/// }
///
/// tokio::runtime::Runtime::new().unwrap().block_on(async move {
2020-03-29 12:02:52 +00:00
/// let schema = Schema::build(QueryRoot, EmptyMutation, EmptySubscription).data("hello".to_string()).finish();
2020-04-02 04:53:53 +00:00
/// let res = schema.execute(r#"
2020-03-09 10:05:52 +00:00
/// {
2020-03-09 12:00:57 +00:00
/// typeA {
/// valueA
/// valueB
/// valueC(a: 3, b: 2)
/// value_d
2020-03-09 10:05:52 +00:00
/// }
/// }"#).await.into_result().unwrap().data;
/// assert_eq!(res, value!({
2020-03-09 12:00:57 +00:00
/// "typeA": {
/// "valueA": "hello",
/// "valueB": 10,
/// "valueC": 5,
/// "value_d": 11
2020-03-09 10:05:52 +00:00
/// }
/// }));
2020-08-10 06:57:45 +00:00
/// });
2020-03-09 10:05:52 +00:00
/// ```
pub use async_graphql_derive::Interface;
2020-06-11 07:08:51 +00:00
2020-03-09 12:59:31 +00:00
/// Define a GraphQL union
2020-03-09 12:59:25 +00:00
///
/// *[See also the Book](https://async-graphql.github.io/async-graphql/en/define_union.html).*
///
/// # Macro parameters
///
/// | Attribute | description | Type | Optional |
/// |-------------|---------------------------|----------|----------|
/// | name | Object name | string | Y |
2020-12-15 02:05:44 +00:00
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
///
2020-09-28 03:15:37 +00:00
/// # Item parameters
///
/// | Attribute | description | Type | Optional |
/// |--------------|------------------------------------------|----------|----------|
/// | flatten | Similar to serde (flatten) | boolean | Y |
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
///
/// # Define a union
///
/// Define TypeA, TypeB, ... as MyUnion
///
/// ```rust
/// use async_graphql::*;
///
/// #[derive(SimpleObject)]
/// struct TypeA {
/// value_a: i32,
/// }
///
/// #[derive(SimpleObject)]
/// struct TypeB {
/// value_b: i32
/// }
///
/// #[derive(Union)]
/// enum MyUnion {
/// TypeA(TypeA),
/// TypeB(TypeB),
/// }
///
/// struct QueryRoot;
///
/// #[Object]
/// impl QueryRoot {
/// async fn all_data(&self) -> Vec<MyUnion> {
/// vec![TypeA { value_a: 10 }.into(), TypeB { value_b: 20 }.into()]
/// }
/// }
///
/// tokio::runtime::Runtime::new().unwrap().block_on(async move {
/// let schema = Schema::build(QueryRoot, EmptyMutation, EmptySubscription).data("hello".to_string()).finish();
/// let res = schema.execute(r#"
/// {
/// allData {
/// ... on TypeA {
/// valueA
/// }
/// ... on TypeB {
/// valueB
/// }
/// }
/// }"#).await.into_result().unwrap().data;
/// assert_eq!(res, value!({
/// "allData": [
/// { "valueA": 10 },
/// { "valueB": 20 },
/// ]
/// }));
2020-08-10 06:57:45 +00:00
/// });
/// ```
pub use async_graphql_derive::Union;
2020-06-11 07:08:51 +00:00
2020-03-17 11:11:14 +00:00
/// Define a GraphQL subscription
///
/// *[See also the Book](https://async-graphql.github.io/async-graphql/en/subscription.html).*
///
2020-03-17 11:11:14 +00:00
/// The field function is a synchronization function that performs filtering. When true is returned, the message is pushed to the client.
/// The second parameter is the type of the field.
/// Starting with the third parameter is one or more filtering conditions, The filter condition is the parameter of the field.
/// The filter function should be synchronous.
///
/// # Macro parameters
///
2020-10-14 09:08:57 +00:00
/// | Attribute | description | Type | Optional |
/// |---------------|---------------------------|----------|----------|
/// | name | Object name | string | Y |
/// | rename_fields | Rename all the fields according to the given case convention. The possible values are "lowercase", "UPPERCASE", "PascalCase", "camelCase", "snake_case", "SCREAMING_SNAKE_CASE".| string | Y |
/// | rename_args | Rename all the arguments according to the given case convention. The possible values are "lowercase", "UPPERCASE", "PascalCase", "camelCase", "snake_case", "SCREAMING_SNAKE_CASE".| string | Y |
/// | extends | Add fields to an entity that's defined in another service | bool | Y |
2020-10-27 01:19:00 +00:00
/// | use_type_description | Specifies that the description of the type is on the type declaration. [`Description`]()(derive.Description.html) | bool | Y |
2020-03-17 11:11:14 +00:00
///
/// # Field parameters
///
/// | Attribute | description | Type | Optional |
/// |-------------|---------------------------|----------|----------|
/// | name | Field name | string | Y |
/// | deprecation | Field deprecated | bool | Y |
2020-03-17 11:11:14 +00:00
/// | deprecation | Field deprecation reason | string | Y |
2020-10-14 09:08:57 +00:00
/// | guard | Field of guard | [`Guard`](guard/trait.Guard.html) | Y |
2020-12-15 02:05:44 +00:00
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
/// | secret | Mark this field as a secret, it will not output the actual value in the log. | bool | Y |
2020-03-17 11:11:14 +00:00
///
/// # Field argument parameters
///
2020-07-07 08:41:29 +00:00
/// | Attribute | description | Type | Optional |
2020-09-28 09:44:00 +00:00
/// |--------------|------------------------------------------|------------ |----------|
2020-07-07 08:41:29 +00:00
/// | name | Argument name | string | Y |
/// | desc | Argument description | string | Y |
/// | default | Use `Default::default` for default value | none | Y |
/// | default | Argument default value | literal | Y |
/// | default_with | Expression to generate default value | code string | Y |
/// | validator | Input value validator | [`InputValueValidator`](validators/trait.InputValueValidator.html) | Y |
2020-12-15 02:05:44 +00:00
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
2020-03-17 11:11:14 +00:00
///
/// # Examples
///
/// ```rust
2020-03-17 11:11:14 +00:00
/// use async_graphql::*;
2020-10-16 06:49:22 +00:00
/// use futures_util::stream::{Stream, StreamExt};
2020-03-17 11:11:14 +00:00
///
/// struct SubscriptionRoot;
///
/// #[Subscription]
2020-03-17 11:11:14 +00:00
/// impl SubscriptionRoot {
/// async fn value(&self, condition: i32) -> impl Stream<Item = i32> {
/// // Returns the number from 0 to `condition`.
2020-10-16 06:49:22 +00:00
/// futures_util::stream::iter(0..condition)
2020-03-17 11:11:14 +00:00
/// }
/// }
/// ```
pub use async_graphql_derive::Subscription;
2020-04-17 03:06:33 +00:00
/// Define a Scalar
///
/// # Macro parameters
///
/// | Attribute | description | Type | Optional |
/// |-------------|---------------------------|----------|----------|
/// | name | Scalar name | string | Y |
/// | specified_by_url | Provide a specification URL for this scalar type, it must link to a human-readable specification of the data format, serialization and coercion rules for this scalar. | string | Y |
///
pub use async_graphql_derive::Scalar;
2020-08-09 04:35:15 +00:00
2021-01-15 02:29:03 +00:00
/// Define a NewType Scalar
///
/// It also implements `From<InnerType>` and `Into<InnerType>`.
///
/// # Macro parameters
///
/// | Attribute | description | Type | Optional |
/// |-------------|---------------------------|----------|----------|
/// | name | If this attribute is provided then define a new scalar, otherwise it is just a transparent proxy for the internal scalar. | string | Y |
/// | name | If this attribute is provided then define a new scalar, otherwise it is just a transparent proxy for the internal scalar. | bool | Y |
/// | visible(Only valid for new scalars) | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible(Only valid for new scalars) | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
/// | specified_by_url(Only valid for new scalars) | Provide a specification URL for this scalar type, it must link to a human-readable specification of the data format, serialization and coercion rules for this scalar. | string | Y |
///
2021-01-15 02:29:03 +00:00
/// # Examples
///
/// ## Use the original scalar name
///
2021-01-15 02:29:03 +00:00
/// ```rust
/// use async_graphql::*;
///
/// #[derive(NewType)]
/// struct Weight(f64);
///
/// struct QueryRoot;
///
/// #[Object]
/// impl QueryRoot {
/// async fn value(&self) -> Weight {
/// Weight(1.234)
/// }
/// }
///
/// // Test conversion
/// let weight: Weight = 10f64.into();
/// let weight_f64: f64 = weight.into();
///
/// tokio::runtime::Runtime::new().unwrap().block_on(async move {
2021-01-15 02:29:03 +00:00
/// let schema = Schema::build(QueryRoot, EmptyMutation, EmptySubscription).data("hello".to_string()).finish();
///
/// let res = schema.execute("{ value }").await.into_result().unwrap().data;
/// assert_eq!(res, value!({
/// "value": 1.234,
/// }));
///
/// let res = schema.execute(r#"
/// {
/// __type(name: "QueryRoot") {
/// fields {
/// name type {
/// kind
/// ofType { name }
/// }
/// }
/// }
/// }"#).await.into_result().unwrap().data;
/// assert_eq!(res, value!({
/// "__type": {
/// "fields": [{
/// "name": "value",
/// "type": {
/// "kind": "NON_NULL",
/// "ofType": {
/// "name": "Float"
/// }
/// }
/// }]
/// }
/// }));
/// });
/// ```
///
/// ## Define a new scalar
///
/// ```rust
/// use async_graphql::*;
///
/// /// Widget NewType
/// #[derive(NewType)]
/// #[graphql(name)] // or: #[graphql(name = true)], #[graphql(name = "Weight")]
/// struct Weight(f64);
///
/// struct QueryRoot;
///
/// #[Object]
/// impl QueryRoot {
/// async fn value(&self) -> Weight {
/// Weight(1.234)
/// }
/// }
///
/// tokio::runtime::Runtime::new().unwrap().block_on(async move {
/// let schema = Schema::build(QueryRoot, EmptyMutation, EmptySubscription).data("hello".to_string()).finish();
///
/// let res = schema.execute("{ value }").await.into_result().unwrap().data;
/// assert_eq!(res, value!({
/// "value": 1.234,
/// }));
///
/// let res = schema.execute(r#"
/// {
/// __type(name: "QueryRoot") {
/// fields {
/// name type {
/// kind
/// ofType { name }
/// }
/// }
/// }
/// }"#).await.into_result().unwrap().data;
/// assert_eq!(res, value!({
/// "__type": {
/// "fields": [{
/// "name": "value",
/// "type": {
/// "kind": "NON_NULL",
/// "ofType": {
/// "name": "Weight"
/// }
/// }
/// }]
/// }
/// }));
///
/// assert_eq!(schema.execute(r#"{ __type(name: "Weight") { name description } }"#).
/// await.into_result().unwrap().data, value!({
/// "__type": {
/// "name": "Weight", "description": "Widget NewType"
/// }
/// }));
/// });
/// ```
2021-01-15 02:29:03 +00:00
pub use async_graphql_derive::NewType;
2020-08-09 04:35:15 +00:00
/// Define a merged object with multiple object types.
///
/// *[See also the Book](https://async-graphql.github.io/async-graphql/en/merging_objects.html).*
///
2020-08-10 06:57:45 +00:00
/// # Macro parameters
///
/// | Attribute | description | Type | Optional |
/// |---------------|---------------------------|----------|----------|
/// | name | Object name | string | Y |
/// | cache_control | Object cache control | [`CacheControl`](struct.CacheControl.html) | Y |
/// | extends | Add fields to an entity that's defined in another service | bool | Y |
2020-12-15 02:05:44 +00:00
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
/// | serial | Resolve each field sequentially. | bool | Y |
2020-08-10 06:57:45 +00:00
///
2020-08-09 04:35:15 +00:00
/// # Examples
///
/// ```rust
/// use async_graphql::*;
///
/// #[derive(SimpleObject)]
2020-08-09 04:35:15 +00:00
/// struct Object1 {
/// a: i32,
/// }
///
/// #[derive(SimpleObject)]
2020-08-09 04:35:15 +00:00
/// struct Object2 {
/// b: i32,
/// }
///
/// #[derive(SimpleObject)]
2020-08-09 04:35:15 +00:00
/// struct Object3 {
/// c: i32,
/// }
///
/// #[derive(MergedObject)]
2020-08-09 04:35:15 +00:00
/// struct MyObj(Object1, Object2, Object3);
///
2020-08-10 06:11:46 +00:00
/// let obj = MyObj(Object1 { a: 10 }, Object2 { b: 20 }, Object3 { c: 30 });
2020-08-09 04:35:15 +00:00
/// ```
pub use async_graphql_derive::MergedObject;
2020-08-27 07:35:48 +00:00
/// Define a merged subscription with multiple subscription types.
///
/// *[See also the Book](https://async-graphql.github.io/async-graphql/en/merging_objects.html).*
///
2020-08-27 07:35:48 +00:00
/// # Macro parameters
///
/// | Attribute | description | Type | Optional |
/// |---------------|---------------------------|----------|----------|
/// | name | Object name | string | Y |
/// | extends | Add fields to an entity that's defined in another service | bool | Y |
/// | visible | If `false`, it will not be displayed in introspection. *[See also the Book](https://async-graphql.github.io/async-graphql/en/visibility.html).* | bool | Y |
/// | visible | Call the specified function. If the return value is `false`, it will not be displayed in introspection. | string | Y |
2020-08-27 07:35:48 +00:00
///
/// # Examples
///
/// ```rust
/// use async_graphql::*;
2020-10-16 06:49:22 +00:00
/// use futures_util::stream::Stream;
2020-08-27 07:35:48 +00:00
///
/// #[derive(Default)]
/// struct Subscription1;
///
/// #[Subscription]
2020-08-27 07:35:48 +00:00
/// impl Subscription1 {
/// async fn events1(&self) -> impl Stream<Item = i32> {
2020-10-16 06:49:22 +00:00
/// futures_util::stream::iter(0..10)
2020-08-27 07:35:48 +00:00
/// }
/// }
///
/// #[derive(Default)]
/// struct Subscription2;
///
/// #[Subscription]
2020-08-27 07:35:48 +00:00
/// impl Subscription2 {
/// async fn events2(&self) -> impl Stream<Item = i32> {
2020-10-16 06:49:22 +00:00
/// futures_util::stream::iter(10..20)
2020-08-27 07:35:48 +00:00
/// }
/// }
///
/// #[derive(MergedSubscription, Default)]
2020-08-27 07:35:48 +00:00
/// struct Subscription(Subscription1, Subscription2);
/// ```
pub use async_graphql_derive::MergedSubscription;
2020-10-27 01:19:00 +00:00
/// Attach a description to `Object`, `Scalar` or `Subscription`.
///
/// The three types above use the rustdoc on the implementation block as
/// the GraphQL type description, but if you want to use the rustdoc on the
/// type declaration as the GraphQL type description, you can use that derived macro.
///
/// # Examples
///
/// ```rust
/// use async_graphql::*;
///
/// /// This is MyObj
/// #[derive(Description, Default)]
/// struct MyObj;
///
/// #[Object(use_type_description)]
/// impl MyObj {
/// async fn value(&self) -> i32 {
/// 100
/// }
/// }
///
/// #[derive(SimpleObject, Default)]
/// struct Query {
/// obj: MyObj,
/// }
///
/// tokio::runtime::Runtime::new().unwrap().block_on(async move {
2020-10-27 01:19:00 +00:00
/// let schema = Schema::new(Query::default(), EmptyMutation, EmptySubscription);
/// assert_eq!(
/// schema
/// .execute(r#"{ __type(name: "MyObj") { description } }"#)
/// .await
/// .data,
/// value!({
/// "__type": { "description": "This is MyObj" }
/// })
/// );
/// });
/// ```
pub use async_graphql_derive::Description;