GraphQL reference

PutDailyLogInput

Input

Autogenerated input 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.
createdAtISO8601DateTime!
dateISO8601Date!
idID!
mutationMetadataJSON
notesString!
safetyNotesString!
updatedAtISO8601DateTime!
weatherNotesString!