AddInspectionSectionPayload
ObjectAutogenerated return type of AddInspectionSection.
mutation { organization(id: $organizationId) { project(id: $projectId) { addInspectionSection } } }
Example
mutation AddInspectionSection(
$organizationId: ID!
$projectId: ID!
$input: AddInspectionSectionInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
addInspectionSection(input: $input) {
inspectionSection
errors
}
}
}
}Fields
| Field | Type | Description |
|---|---|---|
| clientMutationId | String | A unique identifier for the client performing the mutation. |
| constructableUrl | String | — |
| errors | [String!]! | — |
| inspectionSection | InspectionSection | — |