I am new to Dynamodb and Appsync I have one table named User with fields id and name as follow
type User {
id: ID! // auto-generated
name: String }
By using the mutation I inserted 5 records. Now my query is how do I get the count of the number of records present in the Dynamodb table using the Appsync request mapping template(Resolver) can be any type of template(ie query, scan, batchGetitem etc).
Thanks in advance!!