AWS Amplify 未生成正确的 graphql 输入深度

AWS Amplify not generating proper graphql input depth

我是 graphql 和 AWS Amplify 的新手,所以请原谅任何无知:)

我有一个像这样的 graphql 模式:

type Location @model @auth(rules: [{allow: owner}]){
  street: String
  city: String
  state: String
  zip: String
}

type Trip @model @auth(rules: [{allow: owner}]){
  id: String!
  ...
  location: Location
}

我正在尝试使用这样的变更请求同时创建位置和行程:

mutation {
  createTrip(input: {
      id: "someIdentifier",
      location: {
        street: "somewhere"
      }
  }) {
      id
      location {
        street
      }
  }
}

但是我收到这样的错误:

{
  "data": null,
  "errors": [
    {
      "path": null,
      "locations": [
        {
          "line": 2,
          "column": 21,
          "sourceName": null
        }
      ],
      "message": "Validation error of type WrongType: argument 'input' with value '...' contains a field not in 'CreateTripInput': 'location' @ 'createTrip'"
    }
  ]
}

查看生成的schema.graphql文件,发现输入模型上确实没有location对象:

input CreateTripInput {
  id: String!
  ...
}

如何让 amplify 生成正确的输入模式,以便同时创建 Trip 和 location 对象?

我能够从 aws-amplify 团队 here 那里得到答案。总结:

Trip 和 Location 都有 model 指令。没有将 Trip 与 Location 连接起来的 @connection 指令。 "resolving" 的两个选项是:

如果您希望模型位于 2 个单独的 table 中并希望能够根据位置查询行程,请更新连接模型的模式。但是,使用 2 个单独的 table,您将无法在单个突变中同时创建 Trip 和 Location。例如:

type Location @model @auth(rules: [{allow: owner}]){
  street: String
  city: String
  state: String
  zip: String
  trips: Trip @connection(name:"TripLocation")
}

type Trip @model @auth(rules: [{allow: owner}]){
  id: String!
  location: Location @connection(name:"TripLocation")
}

第二个选项,如果 Location 数据非常特定于一次旅行并且您不想创建单独的 table,则从您的 Location 类型中删除 @model 指令。这样做将允许您将位置创建为同一突变的一部分。

type Location {
  street: String
  city: String
  state: String
  zip: String

}

type Trip @model @auth(rules: [{allow: owner}]){
  id: String!
  location: Location
}

后来是我推进的解决方案。