CreateSpecSectionPayload
ObjectAutogenerated return type of CreateSpecSection.
mutation { organization(id: $organizationId) { project(id: $projectId) { createSpecSection } } }
Example
mutation CreateSpecSection(
$organizationId: ID!
$projectId: ID!
$input: CreateSpecSectionInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
createSpecSection(input: $input) {
specSection
errors
}
}
}
}Fields
| Field | Type | Description |
|---|---|---|
| clientMutationId | String | A unique identifier for the client performing the mutation. |
| constructableUrl | String | — |
| errors | [String!]! | — |
| specSection | SpecSection | — |