尝试突变GraphQL中的数据时出错

时间:2019-05-10 14:46:17

标签: graphql mutation

我正在尝试对GraphQl中的数据进行突变,并且正在使用GraphQl游乐场进行测试。我正在传递突变和查询变量,但它似乎无法正常工作。

突变查询-

onViewAttachedToWindow()

查询变量-

mutation saveContract($contract: ContractInput) {
  saveContract(contract: $contract) {
    id
    sellerCompanyId
    termName

  }
}

错误-

{
  "contract":
  {
  "id": 12111,
  "sellerCompanyId": 22222,
  "termName": "BD"
}
}

我希望它返回添加的数据。

0 个答案:

没有答案