UpdateSpecSectionInput
InputAutogenerated input type of UpdateSpecSection
mutation { organization(id: $organizationId) { project(id: $projectId) { updateSpecSection } } }
Example
mutation UpdateSpecSection(
$organizationId: ID!
$projectId: ID!
$input: UpdateSpecSectionInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
updateSpecSection(input: $input) {
specSection
errors
}
}
}
}