1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
use std::borrow::Cow;
use crate::{
model::{__Schema, __Type},
parser::types::Field,
registry::{self, SDLExportOptions},
resolver_utils::{resolve_container, ContainerType},
schema::IntrospectionMode,
Any, Context, ContextSelectionSet, ObjectType, OutputType, Positioned, ServerError,
ServerResult, SimpleObject, Value,
};
#[derive(SimpleObject)]
#[graphql(internal, name = "_Service")]
struct Service {
sdl: Option<String>,
}
pub(crate) struct QueryRoot<T> {
pub(crate) inner: T,
}
#[async_trait::async_trait]
impl<T: ObjectType> ContainerType for QueryRoot<T> {
async fn resolve_field(&self, ctx: &Context<'_>) -> ServerResult<Option<Value>> {
if matches!(
ctx.schema_env.registry.introspection_mode,
IntrospectionMode::Enabled | IntrospectionMode::IntrospectionOnly
) && matches!(
ctx.query_env.introspection_mode,
IntrospectionMode::Enabled | IntrospectionMode::IntrospectionOnly,
) {
if ctx.item.node.name.node == "__schema" {
let mut ctx_obj = ctx.with_selection_set(&ctx.item.node.selection_set);
ctx_obj.is_for_introspection = true;
let visible_types = ctx.schema_env.registry.find_visible_types(ctx);
return OutputType::resolve(
&__Schema::new(&ctx.schema_env.registry, &visible_types),
&ctx_obj,
ctx.item,
)
.await
.map(Some);
} else if ctx.item.node.name.node == "__type" {
let (_, type_name) = ctx.param_value::<String>("name", None)?;
let mut ctx_obj = ctx.with_selection_set(&ctx.item.node.selection_set);
ctx_obj.is_for_introspection = true;
let visible_types = ctx.schema_env.registry.find_visible_types(ctx);
return OutputType::resolve(
&ctx.schema_env
.registry
.types
.get(&type_name)
.filter(|_| visible_types.contains(type_name.as_str()))
.map(|ty| __Type::new_simple(&ctx.schema_env.registry, &visible_types, ty)),
&ctx_obj,
ctx.item,
)
.await
.map(Some);
}
}
if ctx.schema_env.registry.introspection_mode == IntrospectionMode::IntrospectionOnly
|| ctx.query_env.introspection_mode == IntrospectionMode::IntrospectionOnly
{
return Ok(None);
}
if ctx.schema_env.registry.enable_federation || ctx.schema_env.registry.has_entities() {
if ctx.item.node.name.node == "_entities" {
let (_, representations) = ctx.param_value::<Vec<Any>>("representations", None)?;
let res = futures_util::future::try_join_all(representations.iter().map(
|item| async move {
self.inner.find_entity(ctx, &item.0).await?.ok_or_else(|| {
ServerError::new("Entity not found.", Some(ctx.item.pos))
})
},
))
.await?;
return Ok(Some(Value::List(res)));
} else if ctx.item.node.name.node == "_service" {
let mut ctx_obj = ctx.with_selection_set(&ctx.item.node.selection_set);
ctx_obj.is_for_introspection = true;
return OutputType::resolve(
&Service {
sdl: Some(
ctx.schema_env
.registry
.export_sdl(SDLExportOptions::new().federation()),
),
},
&ctx_obj,
ctx.item,
)
.await
.map(Some);
}
}
self.inner.resolve_field(ctx).await
}
}
#[async_trait::async_trait]
impl<T: ObjectType> OutputType for QueryRoot<T> {
fn type_name() -> Cow<'static, str> {
T::type_name()
}
fn create_type_info(registry: &mut registry::Registry) -> String {
let root = T::create_type_info(registry);
if matches!(
registry.introspection_mode,
IntrospectionMode::Enabled | IntrospectionMode::IntrospectionOnly
) {
registry.create_introspection_types();
}
root
}
async fn resolve(
&self,
ctx: &ContextSelectionSet<'_>,
_field: &Positioned<Field>,
) -> ServerResult<Value> {
resolve_container(ctx, self).await
}
}
impl<T: ObjectType> ObjectType for QueryRoot<T> {}