DynamoDB - with Serverless
Given this GraphQL query in AppSync linked to DynamoDB:
And the DynamoDB table has an item:
What will be the output of this query?
query GetBook { getBook(id: "123") { id title author } }And the DynamoDB table has an item:
{"id": "123", "title": "Learn DynamoDB", "author": "Jane"}What will be the output of this query?
