1

我正在尝试将 aws-appsync 与 nextjs 应用程序连接起来。我无法弄清楚如何有效地做到这一点。

我曾尝试在 github 上的下一个 js 示例中使用 apollo 示例,但没有成功。我很困惑,因为 appsync 在其文档的示例中没有使用内存缓存。

任何帮助将不胜感激。

4

1 回答 1

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,
  }
});
于 2018-02-21T00:49:37.663 回答