DeleteDrawingSetPagePayload
ObjectAutogenerated return type of DeleteDrawingSetPage.
mutation { organization(id: $organizationId) { project(id: $projectId) { deleteDrawingSetPage } } }
Example
mutation DeleteDrawingSetPage(
$organizationId: ID!
$projectId: ID!
$input: DeleteDrawingSetPageInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
deleteDrawingSetPage(input: $input) {
errors
}
}
}
}