CreateSpecSectionInput
InputAutogenerated input 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
}
}
}
}