BulkEditBidScopesPayload
ObjectAutogenerated return type of BulkEditBidScopes.
mutation { organization(id: $organizationId) { project(id: $projectId) { bulkEditBidScopes } } }
Example
mutation BulkEditBidScopes(
$organizationId: ID!
$projectId: ID!
$input: BulkEditBidScopesInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
bulkEditBidScopes(input: $input) {
errors
}
}
}
}