UpdateInspectionSectionInput
InputAutogenerated 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
}
}
}
}