我不介意这里发生的事情。
这是我的模式:
type MonthResume @model @auth(rules: [{allow: owner, identityClaim: "sub"}]){
id: ID!
incomes: Float!
spendingByCategory: [Category]
}
type Category @model @auth(rules: [{allow: owner, identityClaim: "sub"}]){
id: ID!
name: String!
amount: Float!
}
这是Amplify给我的自动生成的更新突变:
export const updateMonthResume = /* GraphQL */ `
mutation UpdateMonthResume(
$input: UpdateMonthResumeInput!
$condition: ModelMonthResumeConditionInput
) {
updateMonthResume(input: $input, condition: $condition) {
id
incomes
spendingByCategory {
id
name
amount
createdAt
updatedAt
owner
}
createdAt
updatedAt
owner
}
}
`;
这是我的输入:
{
"input": {
"id": "d7f-ee2971fd3ae5",
"incomes": 220,
"spendingByCategory": null,
"createdAt": "2020-08-15T17:06:22.192Z",
"updatedAt": "2020-08-15T17:06:22.192Z",
"owner": "subId"
}
}
我只想更新收入金额,因此我以这种方式调用api的原因:
const input = {
incomes: 0,
}
await API.graphql(graphqlOperation(updateMonthResume, input));
然后,我得到了错误。
我不明白,我不希望更新收入以外的数据,是否需要更改输入内容?但是我为objetc SpendingByCategory发送了一个空值(Amplify自动发送)。
input CreateMonthResumeInput {
id: ID
incomes: Float!
}
答案 0 :(得分:1)
总结评论的讨论/积累知识:
输入对象只能具有以
UpdateMonthResumeInput
类型定义的属性,
- 没有更多
- 可以更少(如果可以为空/不需要)
- ...但全部必需
通常之间存在区别:
- 输入类型(用于突变作为输入/参数)
- ...和返回类型(查询和突变的结果类型)
...以及相关问题/答案:
为什么在此输入中不显示属性
spendingByCategory
?
因为它不是the MonthResume body
(自己的类型字段/属性)-来自关系……像创建用户然后添加用户对象-无法一次与朋友创建用户-不支持嵌套变异。
如果我要添加一个没有关系的对象数组,应该指定什么?我设置
spendingByCategory: [Category!]
只是因为我没有找到对象类型
每个[查询/变异]深度级别都必须在graphql 中定义为一个单独的类型(以及类型之间的关系)。您可以使用“ customJSON类型”(任何可序列化或未知类型的内容),而无需定义复杂字段/属性的类型。
答案 1 :(得分:0)
好,我解决了这个问题。
与SpendingCategory无关(这就是我收到的日志,我正在使用该引用搜索问题)。
我的输入属性不好,因此它分派了该错误。
在输入其他日志之前,请确保输入的对象完全正确。
答案 2 :(得分:0)
我遇到了一个Lambda函数问题,发现为了传递正确的用户属性(所有者),我必须在graphql.schema中定义输入对象以包含所有者-所有者从创建数据库记录的lambda函数的客户端。由于api调用来自lambda函数,因此不确定是否将其留给graphql是谁。