我试图使用此查询在graphcms API上执行简单的创建待办事项操作
mutation {
createTodo(data: { name: "a todo example", checked: true }) {
id
}
}
但我收到此错误
{
"errors": [
{
"message": "something went wrong while processing the request, we have been informed. request id: ck9d1nuww0idt0158uferxop7"
}
],
"data": null,
"extensions": {
"requestId": "ck9d1nuww0idt0158uferxop7"
}
}
有什么帮助吗? PS:其他操作(例如更新和删除)都可以正常工作,我尝试更改查询参数,但是没有运气