我的架构如下:
type User @model {
id: ID!
firstName: String!
lastName: String!
locations: [Location]
}
type Location @model {
id: ID!
listOfPictures: [String]
address: String!
owner: User
}
目前,我同时具有“位置”和“用户”两个条目。我的位置信息均为空。 我想更新我的一个ID为“ 1234”的位置,以将字段“所有者”设置为ID为“ 5678”的用户。
正确的语法是什么?我必须在他的Appsync控制台中输入什么?
此外,如何更新ID为'abc'的用户的'locations'字段,以将位置为ID为'def'的Location添加到Locations数组中? 谢谢。
答案 0 :(得分:0)