Amazon AppSync · Schema

ListResolversResponse

Response with list of resolvers

Amazon AppSyncGraphQLAPI ManagementServerless

Properties

Name Type Description
resolvers array List of resolvers
nextToken string Pagination token
View JSON Schema on GitHub

JSON Schema

appsync-list-resolvers-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-appsync/json-schema/appsync-list-resolvers-response-schema.json",
  "title": "ListResolversResponse",
  "description": "Response with list of resolvers",
  "type": "object",
  "properties": {
    "resolvers": {
      "type": "array",
      "description": "List of resolvers"
    },
    "nextToken": {
      "type": "string",
      "description": "Pagination token"
    }
  }
}