CreateCommitmentsFromBidsInput
InputAutogenerated input type of CreateCommitmentsFromBids
mutation { organization(id: $organizationId) { project(id: $projectId) { createCommitmentsFromBids } } }
Example
mutation CreateCommitmentsFromBids(
$organizationId: ID!
$projectId: ID!
$input: CreateCommitmentsFromBidsInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
createCommitmentsFromBids(input: $input) {
errors
}
}
}
}