SetDailyLogDelaysInput
InputAutogenerated input type of SetDailyLogDelays
mutation { organization(id: $organizationId) { project(id: $projectId) { setDailyLogDelays } } }
Example
mutation SetDailyLogDelays(
$organizationId: ID!
$projectId: ID!
$input: SetDailyLogDelaysInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
setDailyLogDelays(input: $input) {
dailyLog
errors
}
}
}
}