UpdateBidAmountsPayload
ObjectAutogenerated return type of UpdateBidAmounts.
mutation { organization(id: $organizationId) { project(id: $projectId) { updateBidAmounts } } }
Example
mutation UpdateBidAmounts(
$organizationId: ID!
$projectId: ID!
$input: UpdateBidAmountsInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
updateBidAmounts(input: $input) {
bid
errors
}
}
}
}