CreateAndSendLienWaiverInput
InputAutogenerated input type of CreateAndSendLienWaiver
mutation { organization(id: $organizationId) { project(id: $projectId) { createAndSendLienWaiver } } }
Example
mutation CreateAndSendLienWaiver(
$organizationId: ID!
$projectId: ID!
$input: CreateAndSendLienWaiverInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
createAndSendLienWaiver(input: $input) {
lienWaiver
errors
}
}
}
}