GraphQL reference

PutDailyLogOrganizationEntryPayload

Object

Autogenerated return 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.
constructableUrlString
dailyLogOrganizationEntryDailyLogEmployeeEntry
errors[String!]!