GraphQL reference

PutDailyLogPayload

Object

Autogenerated return type of PutDailyLog.

mutation { organization(id: $organizationId) { project(id: $projectId) { putDailyLog } } }

Example

mutation PutDailyLog(
  $organizationId: ID!
  $projectId: ID!
  $input: PutDailyLogInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      putDailyLog(input: $input) {
        dailyLog
        errors
      }
    }
  }
}

Fields

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