CreateDrawingDisciplineInput
InputAutogenerated input type of CreateDrawingDiscipline
mutation { organization(id: $organizationId) { project(id: $projectId) { createDrawingDiscipline } } }
Example
mutation CreateDrawingDiscipline(
$organizationId: ID!
$projectId: ID!
$input: CreateDrawingDisciplineInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
createDrawingDiscipline(input: $input) {
errors
}
}
}
}