We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd5004e commit 30cc2d1Copy full SHA for 30cc2d1
1 file changed
openhexa/cli/api.py
@@ -134,7 +134,7 @@ def _detect_graphql_breaking_changes_if_needed(token):
134
135
def _detect_graphql_breaking_changes(token):
136
"""Detect breaking changes between the schema referenced in the SDK and the server using graphql-core."""
137
- stored_schema_obj = build_schema(BUNDLED_SCHEMA_PATH.read_text())
+ stored_schema_obj = build_schema(BUNDLED_SCHEMA_PATH.read_text(), assume_valid_sdl=True)
138
server_schema_obj = build_client_schema(
139
_query_graphql(get_introspection_query(input_value_deprecation=True), token=token)
140
)
0 commit comments