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
Describe the bug
When calling graphql.schema.idl.SchemaPrinter#schemaPrinter with a schema that has graphql.schema.GraphQLSchema#extensionDefinitions defined, I would expect it to print out the "extend schema" string. I would expect the graphql.schema.idl.SchemaPrinter#schemaPrinter to:
Check if options.isUseAstDefinitions() returns true.
Print "extend schema" for each out.print(AstPrinter.printAst(extension));.
Alternatively, is there another method to enable printing of the extensions?