GraphQL reference

PutDailyLogOrganizationEntryInput

Input

Autogenerated input type of PutDailyLogOrganizationEntry

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

Example

mutation PutDailyLogOrganizationEntry(
  $organizationId: ID!
  $projectId: ID!
  $input: PutDailyLogOrganizationEntryInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      putDailyLogOrganizationEntry(input: $input) {
        dailyLogOrganizationEntry
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
costCodeIdID
costTypeIdID
createdAtISO8601DateTime!
dailyLogIdID!
hoursWorkedFloat!
idID!
mutationMetadataJSON
notesString!
updatedAtISO8601DateTime!
userIdID!