DeleteDailyLogMaterialEntryInput
InputAutogenerated input type of DeleteDailyLogMaterialEntry
mutation { organization(id: $organizationId) { project(id: $projectId) { deleteDailyLogMaterialEntry } } }
Example
mutation DeleteDailyLogMaterialEntry(
$organizationId: ID!
$projectId: ID!
$input: DeleteDailyLogMaterialEntryInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
deleteDailyLogMaterialEntry(input: $input) {
dailyLogMaterialEntry
errors
}
}
}
}