Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions graphql/src/introspection/resolver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,8 @@ fn input_value(
.map_or(r::Value::Null, |value| {
r::Value::String(format!("{}", value))
}),
isDeprecated: false,
deprecationReason: r::Value::Null,
}
}

Expand Down
2 changes: 2 additions & 0 deletions store/test-store/tests/graphql/introspection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -883,6 +883,8 @@ async fn successfully_runs_introspection_query_against_complex_schema() {
description
type { ...TypeRef }
defaultValue
isDeprecated
deprecationReason
}

fragment TypeRef on __Type {
Expand Down
Loading