GraphQL reference

UpdateInspectionStatusPayload

Object

Autogenerated return type of UpdateInspectionStatus.

mutation { organization(id: $organizationId) { project(id: $projectId) { updateInspectionStatus } } }

Example

mutation UpdateInspectionStatus(
  $organizationId: ID!
  $projectId: ID!
  $input: UpdateInspectionStatusInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      updateInspectionStatus(input: $input) {
        inspection
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
constructableUrlString
errors[String!]!
inspectionInspection