DeleteLienWaiverInput
InputAutogenerated input type of DeleteLienWaiver
mutation { organization(id: $organizationId) { project(id: $projectId) { deleteLienWaiver } } }
Example
mutation DeleteLienWaiver(
$organizationId: ID!
$projectId: ID!
$input: DeleteLienWaiverInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
deleteLienWaiver(input: $input) {
lienWaiver
errors
}
}
}
}