我如何在 GraphQL playground 中调用突变?

How can I call mutation in GraphQL playground?

我的模式在下图中的黄色方块内看起来像这样

而且左边的代码并没有真正起作用。 我如何在 GraphQL playground 中调用它?

提前感谢您的回答!

  1. 你可以像
  2. 这样输入查询变量
{ 
 "input": {
    "scheduleId: "123",
    "reason": "123"
 }
}
  1. 也可以直接输入变量
mutation {
 cancelScheduleByAdmin(input: {
    "scheduleId": "123",
    "reason": "123"
 }) {
   ...
 }
}