我有一个这样的 Appsync GraphQL 架构:
type Mutation {
batchAdd(posts: [PostInput]): [Post]
batchDelete(ids: [ID]): [Post]
}
type Post {
id: ID!
title: String
}
input PostInput {
id: ID!
title: String
}
我正在尝试订阅batchAdd
Post 的 ID = 3
我正在浏览 AWS 文档,但没有提到订阅批量请求。
有可能做某事还是有其他选择?