带引用类型的Graphql变异

时间:2017-07-31 21:03:21

标签: entity-relationship graphql mutation object-type

我有一个这样的模型:

配方:

  • 有很多成分

成分:

  • 有很多食谱

IngredientList:

  • 连接两个模型类的表以及一些其他类

添加IngredientList并引用ingredientrecipe的最佳做法是什么?

我应该做出这样的突变:

addRecipeIngredient(recipe {name: 'Wiener Schnitzel'}, ingredient {name: 'Schnitzel'})

addIngredientList(recipe: 1, ingredient: 1) 使用第二种方法,必须事先创建配方和成分

0 个答案:

没有答案