SetDrawingSetPageMeasurePayload
ObjectAutogenerated return type of SetDrawingSetPageMeasure.
mutation { organization(id: $organizationId) { project(id: $projectId) { setDrawingSetPageMeasure } } }
Example
mutation SetDrawingSetPageMeasure(
$organizationId: ID!
$projectId: ID!
$input: SetDrawingSetPageMeasureInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
setDrawingSetPageMeasure(input: $input) {
errors
}
}
}
}