我正在尝试将aws-appsync与nextjs应用程序连接。我无法弄清楚如何有效地做到这一点。
我尝试在github的下一个js示例中使用apollo示例,但没有成功。我很困惑,因为appsync在其文档的示例中没有使用内存缓存。
任何帮助将不胜感激。
答案 0 :(得分:2)
你能用Apollo和Next吗?如果是,那么可以尝试通过将disableOffline
设置为true来禁用AWS AppSync客户端的离线功能:
const client = new AWSAppSyncClient({
disableOffline: true,
url: appSyncConfig.graphqlEndpoint,
region: appSyncConfig.region,
auth: {
type: appSyncConfig.authenticationType,
apiKey: appSyncConfig.apiKey,
}
});