CreateBidScopePayload
ObjectAutogenerated return type of CreateBidScope.
mutation { organization(id: $organizationId) { project(id: $projectId) { createBidScope } } }
Example
mutation CreateBidScope(
$organizationId: ID!
$projectId: ID!
$input: CreateBidScopeInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
createBidScope(input: $input) {
bidScope
errors
}
}
}
}