我已经使用react,graphql,dynamodb,amplify,AppSync和Cognito创建了一个简单的无服务器Web应用程序。该应用程序的工作方式是,用户使用其登录凭据登录,然后该应用程序从数据库中获取事件详细信息,并将其显示在网页上。我的应用有时有时突然停止从dynamodb提取数据。这通常在我更新github或添加新模块时发生。 schema.graphql与存储在云中的相同。
刷新页面后,Chrome控制台中出现以下错误:
Uncaught (in promise) Error: No credentials
Schema.graphql
type Item @model @auth(rules: [{allow: owner, queries: null}]){
id: ID!
title: String!
date: String!
time: String!
description: String
}
https://github.com/omarhassanhub/serverless-graphql-react-webapp