GraphQL reference

SetDailyLogDelaysPayload

Object

Autogenerated return 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
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
constructableUrlString
dailyLogDailyLog
errors[String!]!