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:
"Description"
property_a: [TypeA!] @deprecated(reason: "In favor of ...")
Expected result:
# Deprecated: In favor of ...
property_a: [TypeA!]
Actual result:
"Description"
property_a: [TypeA!]