fix(appsync): correct schema definition for Query type #32638
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Issue # (if applicable)
Closes #.
Reason for this change
The current schema is incorrect and it fails stack deployment. I got the following error:
AppStack | 14.47.29 | CREATE_FAILED | AWS::AppSync::Resolver | Api/QueryGetDemosConsistentResolver (ApiQueryGetDemosConsistentResolver47D5A89B) Resource handler returned message: "No field named getDemosConsistent found on type Query (Service: AppSync, Status Code: 404, Request ID: 49d05d60-ec48-484f-a5ea-ce4e07424291)" (RequestToken: 1776599b-8208-1445-0cfc-01cfb2bde3b1, HandlerErrorCode: NotFound) ❌ AppStack failed: Error: The stack named AppStack failed creation, it may need to be manually deleted from the AWS console: ROLLBACK_COMPLETE: Resource handler returned message: "No field named getDemosConsistent found on type Query (Service: AppSync, Status Code: 404, Request ID: 49d05d60-ec48-484f-a5ea-ce4e07424291)" (RequestToken: 1776599b-8208-1445-0cfc-01cfb2bde3b1, HandlerErrorCode: NotFound)
Description of changes
I had to change the
schema.graphql
as following to fix the bug and enable deployment:Describe any new or updated permissions being added
<!— What new or updated IAM permissions are needed to support the changes being introduced ? -->
Description of how you validated changes
I locally tested it. Basically, the new update enabled me to deploy the example stack.
Checklist
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license