GraphQL reference

UpdateInspectionSectionInput

Input

Autogenerated input type of UpdateInspectionSection

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

Example

mutation UpdateInspectionSection(
  $organizationId: ID!
  $projectId: ID!
  $input: UpdateInspectionSectionInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      updateInspectionSection(input: $input) {
        inspectionSection
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
idID!
mutationMetadataJSON
titleString