如何使用放大从 aws schema.graphql 生成 graphql 语句

How to generate graphql statements from aws schema.graphql using amplify

所以我使用 amplify add api 命令创建了 schema.graphql,但是当它让我生成查询、变更和订阅时我拒绝了。

现在我想知道,我怎样才能在事后生成它们?还是我必须重新经历整个 amplify add api 过程?

还有一个附加命令可用于启动代码生成。

您可以 运行 amplify configure codegen 对其进行配置(接受默认值可能没问题)。在您更改架构后的任何时候,您都可以 运行 amplify codegen types 重新生成您的类型(确保 运行 和 amplify push 在您这样做之前)。

更多信息在这里:https://aws-amplify.github.io/docs/cli/codegen