BulkEditDrawingSetPagePayload
ObjectAutogenerated return type of BulkEditDrawingSetPage.
mutation { organization(id: $organizationId) { project(id: $projectId) { bulkEditDrawingSetPage } } }
Example
mutation BulkEditDrawingSetPage(
$organizationId: ID!
$projectId: ID!
$input: BulkEditDrawingSetPageInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
bulkEditDrawingSetPage(input: $input) {
errors
}
}
}
}