UnconfirmDrawingSetPageInput
InputAutogenerated input type of UnconfirmDrawingSetPage
mutation { organization(id: $organizationId) { project(id: $projectId) { unconfirmDrawingSetPage } } }
Example
mutation UnconfirmDrawingSetPage(
$organizationId: ID!
$projectId: ID!
$input: UnconfirmDrawingSetPageInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
unconfirmDrawingSetPage(input: $input) {
errors
}
}
}
}