get_nodit_aptos_indexer_api_spec
Retrieve the GraphQL specification for a specific query root in the Nodit Aptos Indexer API, enabling precise API interaction and data retrieval.
Instructions
Returns the GraphQL specification for a specific query root in the Nodit Aptos Indexer API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
queryRoot | Yes | The name of the query root to get the specification for. Use list_nodit_aptos_indexer_api_query_root to see available query roots. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"queryRoot": {
"description": "The name of the query root to get the specification for. Use list_nodit_aptos_indexer_api_query_root to see available query roots.",
"type": "string"
}
},
"required": [
"queryRoot"
],
"type": "object"
}