-
-
Notifications
You must be signed in to change notification settings - Fork 190
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Descriptions appear empty when fetched through URL introspection #1378
Comments
@spawnia could you share the description or even part of your schema? Even just Query.example |
I think it's comparing two descriptions correctly but it cuts of a description after |
Here is a minimal example you can reproduce yourself: # schema.graphql
type Query {
"""
Some description
"""
example: ID
} I brought up a test server through:
Then i compared the schema against the running server:
And the other way around:
|
Version |
When running a diff from a remote schema against a local schema, the descriptions of the remote schema appear empty.
I checked the sent introspection query (it includes
description
) and the result (the field actually has a description).This error does not occur when comparing two local schemas, different descriptions are detected correctly. When comparing two remote schema's, differences in the descriptions are ignored.
Using version
1.27.0
.The text was updated successfully, but these errors were encountered: