find-fields
Identify the field names associated with a specific GraphQL type (object or input object) to streamline schema exploration and integration workflows.
Instructions
Return the field names for a specified GraphQL type (object or input object)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
typeName | Yes | GraphQL type name |
Input Schema (JSON Schema)
{
"properties": {
"typeName": {
"description": "GraphQL type name",
"type": "string"
}
},
"required": [
"typeName"
],
"type": "object"
}