Skip to main content

Documentation Index

Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Update Status Check mutation.

Operation details

FieldValue
NameupdateStatusCheck
GroupBranches
TypeMutation
SignatureupdateStatusCheck(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"
  }
}