Kevin Kamimura
Kevin Kamimura
Hello, we are also experiencing this issue. Adding JavaScriptCore.framework to Link Binary With Libraries does not resolve it. Xcode 13.1 on Apple Silicon M1
I just went through the same ordeal and can confirm that it was gatsby-plugin-favicon v2.1.1 that caused Netlify to kill the build process.
Upgrading to [email protected] resolved this issue for me ``` > NX Failed to process the project graph with "nx-js-graph-plugin". Maximum call stack size exceeded ```
Debugging Appsync I uncovered the underlying error message: ``` { "logType": "GraphQLFieldValidationError", "fieldInError": true, "path": [ "null" ], "errors": [ "Validation error of type UnknownType: Unknown type ModelAWSDateTimeKeyConditionInput" ], "requestId":...
I debugged this. Problem can be found in: ``` @aws-amplify/data-schema/dist/esm/runtime/internals/operations/subscription.mjs // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 function subscriptionFactory(client, modelIntrospection, model, operation, getInternals) {...
You might be wondering as well why I'm using `updateEmployee`. It's because I'm triggering it from EventBridge, e.g. ``` new aws_events.CfnRule(this, 'subscription', { eventBusName: props.eventBus.eventBusName, eventPattern: { 'source': ['com.*****'], 'detail-type':...
> Hi @kekami reading the issue description, this sounds like the issue was with the hand written mutation in the EventBridge CDK code's selection set not matching the subscription's? You...
Hey @AnilMaktala how is it going with the fix? If you want me to validate the fix against my schema, which has grown significantly since this issue was posted, just...
> @kekami - can you upgrade to the latest version? This should be resolved in latest backend / data version. Check in your package-lock that the @aws-amplify/data-schema subpackage is 1.3.0...
You are right! My old schema now works. However my current one is a tad bigger 😅 And is still experiencing problems. schema.sql.ts ``` /* eslint-disable */ /* THIS IS...