With a GraphQL introspection query like the following I get all the field names on the mutation type of a GraphQL schema. In addition I'd like to get the arguments and their types. How can I query these in addition?
query {
__schema {
mutationType {
name
fields {
name
}
}
}
}