Open
Description
Hi!
I wonder if there's a way to instruct schema renderer responsible for api.render
attribute to use extend
keywords on defined types instead of the @extends
directive in the resulting SDL? Apollo docs seem to discourage use of the directive in favour of the keyword.
I.e. turning this:
type Query @extends { ... }
into this
extend type Query { ... }