Operation details
| Field | Value |
|---|---|
| Name | updateStatusCheck |
| Group | Branches |
| Type | Mutation |
| Signature | updateStatusCheck(input: UpdateStatusCheckInput!): UpdateStatusCheckPayload! |
Playground
Query
Query
mutation UpdateStatusCheck($input: UpdateStatusCheckInput!) {
updateStatusCheck(input: $input) {
statusCheck {
id
description
status
createdAt
updatedAt
branchId
}
}
}
Variables
Variables
{
"input": {
"branchId": "",
"checkName": "",
"status": "pending"
}
}