GraphQL reference

MoveInspectionItemDownPayload

Object

Autogenerated return type of MoveInspectionItemDown.

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

Example

mutation MoveInspectionItemDown(
  $organizationId: ID!
  $projectId: ID!
  $input: MoveInspectionItemDownInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      moveInspectionItemDown(input: $input) {
        inspectionItem
        errors
      }
    }
  }
}

Fields

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