We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a388cb commit 32e9b43Copy full SHA for 32e9b43
graphql/src/introspection/resolver.rs
@@ -300,6 +300,8 @@ fn input_value(
300
.map_or(r::Value::Null, |value| {
301
r::Value::String(format!("{}", value))
302
}),
303
+ isDeprecated: false,
304
+ deprecationReason: r::Value::Null,
305
}
306
307
store/test-store/tests/graphql/introspection.rs
@@ -883,6 +883,8 @@ async fn successfully_runs_introspection_query_against_complex_schema() {
883
description
884
type { ...TypeRef }
885
defaultValue
886
+ isDeprecated
887
+ deprecationReason
888
889
890
fragment TypeRef on __Type {
0 commit comments