GraphQL reference

DeleteDailyLogInspectionLogPayload

Object

Autogenerated return type of DeleteDailyLogInspectionLog.

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

Example

mutation DeleteDailyLogInspectionLog(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteDailyLogInspectionLogInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteDailyLogInspectionLog(input: $input) {
        dailyLogInspectionLog
        errors
      }
    }
  }
}

Fields

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