GraphQL reference

DeleteDailyLogOrganizationEntryPayload

Object

Autogenerated return type of DeleteDailyLogOrganizationEntry.

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

Example

mutation DeleteDailyLogOrganizationEntry(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteDailyLogOrganizationEntryInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteDailyLogOrganizationEntry(input: $input) {
        dailyLogOrganizationEntry
        errors
      }
    }
  }
}

Fields

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