GraphQL reference

DeleteDailyLogDeliveryLogPayload

Object

Autogenerated return type of DeleteDailyLogDeliveryLog.

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

Example

mutation DeleteDailyLogDeliveryLog(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteDailyLogDeliveryLogInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteDailyLogDeliveryLog(input: $input) {
        dailyLogDeliveryLog
        errors
      }
    }
  }
}

Fields

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