getSubgraphSchema
Retrieve the schema of a specific subgraph in JSON or GraphQL text format using GraphQL introspection. Ideal for analyzing or integrating subgraph data structures with applications.
Instructions
Fetch the schema of a specified subgraph using GraphQL introspection.
Args: subgraphId (str): The ID of the subgraph to query. asText (bool): If True, return schema as GraphQL text; otherwise, return JSON.
Returns: str: Schema in JSON or GraphQL text format, or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
asText | No | ||
subgraphId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"asText": {
"default": false,
"title": "Astext",
"type": "boolean"
},
"subgraphId": {
"title": "Subgraphid",
"type": "string"
}
},
"required": [
"subgraphId"
],
"title": "getSubgraphSchemaArguments",
"type": "object"
}