UpdateBidScopeInput
InputAutogenerated input type of UpdateBidScope
mutation { organization(id: $organizationId) { project(id: $projectId) { updateBidScope } } }
Example
mutation UpdateBidScope(
$organizationId: ID!
$projectId: ID!
$input: UpdateBidScopeInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
updateBidScope(input: $input) {
bidScope
errors
}
}
}
}