Applying a calendar
Apply a simple calendar to Autoplan to exclude non-working days for make parts
Last updated
Was this helpful?
Was this helpful?
mutation UpdateOrganization($input: UpdateOrganizationInput!) {
updateOrganization(input: $input) {
organization {
id
domain
name
settings {
plans {
workingTime
}
}
}
}
}{
"input": {
"id": 1,
"etag": <etag from previous step>,
"settings": {
"plans": {
"workingTime": "0 0 * * 1-5"
}
}
}
}