Изменение статуса опроса
mutation($input: SurveyEntityInput!) {
updateSurvey(id: 1, input: $input) {
id
status
}
}{
"input": {
"status": "Running"
}
}{
"errors": [
{
"message": "You have to specify an URL to go live",
"locations": [
{
"line": 2,
"column": 3
}
],
"path": [
"updateSurvey"
],
"extensions": {
"invalidArgs": [
"liveUrl"
],
"code": "BAD_USER_INPUT",
"exception": null
},
"status": 200
}
],
"data": null
}Last updated