Retrieves the introspection schema for a GraphQL API.
Use a bare-bones client and the command you need to make an API call.
import { AppSyncClient, GetIntrospectionSchemaCommand } from "@aws-sdk/client-appsync"; // ES Modules import // const { AppSyncClient, GetIntrospectionSchemaCommand } = require("@aws-sdk/client-appsync"); // CommonJS import const client = new AppSyncClient(config); const command = new GetIntrospectionSchemaCommand(input); const response = await client.send(command);
GetIntrospectionSchemaCommandInput for command's input shape.
input
GetIntrospectionSchemaCommandOutput for command's response shape.
response
config for AppSyncClient's config shape.
config
Retrieves the introspection schema for a GraphQL API.
Use a bare-bones client and the command you need to make an API call.
import { AppSyncClient, GetIntrospectionSchemaCommand } from "@aws-sdk/client-appsync"; // ES Modules import // const { AppSyncClient, GetIntrospectionSchemaCommand } = require("@aws-sdk/client-appsync"); // CommonJS import const client = new AppSyncClient(config); const command = new GetIntrospectionSchemaCommand(input); const response = await client.send(command);
GetIntrospectionSchemaCommandInput for command's
input
shape.GetIntrospectionSchemaCommandOutput for command's
response
shape.config for AppSyncClient's
config
shape.