この関係をグラフクールで作成しました
type User @model {
id: ID! @isUnique
location: Location! @relation(name: "UserLocation")
}
type Location @model {
id: ID! @isUnique
lat: Int
lng: Int
User: User! @relation(name: "UserLocation”)
}
以前は location は String でしたが、今度はそれをオブジェクトにしたかったので、このリレーションを作成して、ネストされたミューテーションを使用できるようにしました。デプロイすると、次のエラーが表示されます。
There are issues with the new service definition:
Global
✖ None.get
私はググってドキュメントを見ましたが、私が間違っていることを理解できません。これは単純な関係です。