DeleteDailyLogPersonnelEntryInput
InputAutogenerated input type of DeleteDailyLogPersonnelEntry
mutation { organization(id: $organizationId) { project(id: $projectId) { deleteDailyLogPersonnelEntry } } }
Example
mutation DeleteDailyLogPersonnelEntry(
$organizationId: ID!
$projectId: ID!
$input: DeleteDailyLogPersonnelEntryInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
deleteDailyLogPersonnelEntry(input: $input) {
dailyLogPersonnelEntry
errors
}
}
}
}