get_mutation_details
Retrieve detailed specifications for GraphQL mutations, including argument requirements, return types, descriptions, and usage examples, in YAML format.
Instructions
Get detailed information about specific GraphQL mutations.
Retrieves argument requirements, return type information, descriptions, and
example usage for the specified mutations.
Args:
mutation_names: Comma-separated list of mutation names to get details for
Returns:
A YAML-formatted string containing detailed information about the requested mutations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mutation_names | Yes |
Input Schema (JSON Schema)
{
"properties": {
"mutation_names": {
"title": "Mutation Names",
"type": "string"
}
},
"required": [
"mutation_names"
],
"title": "get_mutation_detailsArguments",
"type": "object"
}