DeleteBidScopePayload
ObjectAutogenerated return type of DeleteBidScope.
mutation { organization(id: $organizationId) { project(id: $projectId) { deleteBidScope } } }
Example
mutation DeleteBidScope(
$organizationId: ID!
$projectId: ID!
$input: DeleteBidScopeInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
deleteBidScope(input: $input) {
bidScope
errors
}
}
}
}