introspect
Retrieve and analyze the schema of a GraphQL API to ensure accurate query construction. Use this tool to access schema details when direct resources are unavailable.
Instructions
Introspect the GraphQL schema, use this tool before doing a query to get the schema information if you do not have it available as a resource already.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
__ignore__ | No | This does not do anything |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"__ignore__": {
"default": false,
"description": "This does not do anything",
"type": "boolean"
}
},
"type": "object"
}