我正在尝试对GraphQl中的数据进行突变,并且正在使用GraphQl游乐场进行测试。我正在传递突变和查询变量,但它似乎无法正常工作。
突变查询-
onViewAttachedToWindow()
查询变量-
mutation saveContract($contract: ContractInput) {
saveContract(contract: $contract) {
id
sellerCompanyId
termName
}
}
错误-
{
"contract":
{
"id": 12111,
"sellerCompanyId": 22222,
"termName": "BD"
}
}
我希望它返回添加的数据。