async-graphql/src/model/schema.rs

65 lines
2.0 KiB
Rust
Raw Normal View History

use crate::model::{__Directive, __Type};
2020-03-03 11:15:18 +00:00
use crate::registry;
use async_graphql_derive::Object;
pub struct __Schema<'a> {
pub registry: &'a registry::Registry,
}
2020-03-05 06:23:55 +00:00
#[Object(
internal,
desc = "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations."
)]
impl<'a> __Schema<'a> {
#[field(desc = "A list of all types supported by this server.")]
fn types(&self) -> Vec<__Type<'a>> {
2020-03-05 06:23:55 +00:00
self.registry
.types
2020-03-03 11:15:18 +00:00
.values()
.map(|ty| __Type::new_simple(self.registry, ty))
2020-03-05 06:23:55 +00:00
.collect()
2020-03-03 11:15:18 +00:00
}
2020-03-09 12:00:57 +00:00
#[field(desc = "The type that query operations will be rooted at.")]
fn query_type(&self) -> __Type<'a> {
2020-03-08 12:35:36 +00:00
__Type::new_simple(
self.registry,
&self.registry.types[&self.registry.query_type],
)
2020-03-03 11:15:18 +00:00
}
2020-03-05 06:23:55 +00:00
#[field(
desc = "If this server supports mutation, the type that mutation operations will be rooted at."
)]
fn mutation_type(&self) -> Option<__Type<'a>> {
2020-03-08 12:35:36 +00:00
if let Some(ty) = &self.registry.mutation_type {
2020-03-05 09:06:14 +00:00
Some(__Type::new_simple(self.registry, &self.registry.types[ty]))
} else {
None
}
2020-03-05 00:39:56 +00:00
}
2020-03-05 06:23:55 +00:00
#[field(
desc = "If this server support subscription, the type that subscription operations will be rooted at."
)]
fn subscription_type(&self) -> Option<__Type<'a>> {
2020-03-17 09:26:59 +00:00
if let Some(ty) = &self.registry.subscription_type {
Some(__Type::new_simple(self.registry, &self.registry.types[ty]))
} else {
None
}
}
2020-03-05 06:23:55 +00:00
#[field(desc = "A list of all directives supported by this server.")]
fn directives(&self) -> Vec<__Directive<'a>> {
2020-03-05 06:23:55 +00:00
self.registry
.directives
2020-03-08 12:35:36 +00:00
.values()
.map(|directive| __Directive {
registry: &self.registry,
directive,
})
2020-03-05 06:23:55 +00:00
.collect()
2020-03-03 11:15:18 +00:00
}
}