graphql
graphql copied to clipboard
Is it possible to go from `*graphql.Schema` to an ast node?
Description
I would like to load a schema and then visit each FieldDefinition to perform some operation but while I can print the document, then parse it then use the ast nodes, I figured there would be a way to get the ast node for a schema. Is this possible?
up