UpdateScheduleCompanyColorsPayload
ObjectAutogenerated return type of UpdateScheduleCompanyColors.
mutation { organization(id: $organizationId) { project(id: $projectId) { updateScheduleCompanyColors } } }
Example
mutation UpdateScheduleCompanyColors(
$organizationId: ID!
$projectId: ID!
$input: UpdateScheduleCompanyColorsInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
updateScheduleCompanyColors(input: $input) {
schedule
errors
}
}
}
}