You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like there is an issue with the deprecated fields.
I am specifying a list of URLs and using graphql.IntrospectRemoteSchemas(...) to get my schema.
I realised that the behaviour of resolving deprecated fields is invalid.
My schema:
"Description"property_a: [TypeA!] @deprecated(reason: "In favor of ...")
Expected result:
# Deprecated: In favor of ...property_a: [TypeA!]
Actual result:
"Description"property_a: [TypeA!]
The text was updated successfully, but these errors were encountered:
Can you share how you produced the result? Is that via introspection, and if so which tool did you use?
If you have the time, a Go test to reproduce would be very helpful in establishing a root cause and coming up with a fix.
It's worth noting some introspection tools may behave differently with respect to deprecation and descriptions. To my knowledge, gateway will keep directives as-is in the merged schema.
Hello!
It seems like there is an issue with the deprecated fields.
I am specifying a list of URLs and using
graphql.IntrospectRemoteSchemas(...)
to get my schema.I realised that the behaviour of resolving
deprecated
fields is invalid.My schema:
Expected result:
Actual result:
The text was updated successfully, but these errors were encountered: