如何在TypeGraphQL中保存用户的配方?

时间:2019-06-26 18:16:34

标签: graphql type-graphql

我将按照以下示例作为教程:https://github.com/19majkel94/type-graphql/tree/master/examples/typeorm-lazy-relations

现在服务器已启动并正在运行,我可以创建新用户(已实现用户解析器)和配方,如example.gql

所示
mutation AddRecipe {
  addRecipe(recipe: {
    title: "New Recipe"
  }) {
    id
    ratings {
      value
    }
  }
}

但是,我不知道如何与用户和配方建立关系。我试过了,但是给了我错误。

mutation AddRecipe {
  addRecipe(recipe: {
    title: "New Recipe",
    user: {
      id: 1
    }
  }) {
    id
    ratings {
      value
    }
  }
}

我应该在哪里将用户数据与配方相关联?请赐教。

0 个答案:

没有答案