// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`amplify add api (GraphQL) updates AppSync API in headless mode 1`] = ` { "ElasticsearchWarning": true, "ResolverConfig": { "project": { "ConflictDetection": "VERSION", "ConflictHandler": "OPTIMISTIC_CONCURRENCY", }, }, "Version": 5, } `; exports[`amplify add api (GraphQL) updates AppSync API in headless mode 2`] = ` { "additionalAuthenticationProviders": [ { "apiKeyConfig": {}, "authenticationType": "API_KEY", }, ], "defaultAuthentication": { "authenticationType": "AWS_IAM", }, } `; exports[`amplify add api (GraphQL) updates AppSync API in headless mode 3`] = ` "type Post @model { id: ID! title: String comments: [Comment!]! @connection(keyName: \"byPost\", fields: [\"id\"]) } type Comment @model @key(name: \"byPost\", fields: [\"postID\"]) { id: ID! content: String postID: ID! } " `;