Group plan items with the same date

Overview

By default, Autoplan will group together plan items for the same part and date. However, if you don't want this behavior, it can be overridden.

Toggling the setting

For now, this setting is API only.

First, query your organization to get properties that we'll use in the following step:

{
  organization(id: 1) {
    id
    _etag
    settings {
      plans {
        groupPlanItemsWithSameDate
      }
    }
  }
}

To set this value to false, run the following mutation:

mutation UpdateOrganization($input: UpdateOrganizationInput!) {
  updateOrganization(input: $input) {
    organization {
      id
      domain
      name
      settings {
        plans {
          groupPlanItemsWithSameDate
        }
      }
    }
  }
}

with this input. Make sure to use the etag from the first query:

{
  "input": {
    "id": 1,
    "etag": <etag from previous step>,
    "settings": {
      "plans": {
        "groupPlanItemsWithSameDate": false
      }
    }
  }
}

Last updated