UpdateBidTagPayload
ObjectAutogenerated return type of UpdateBidTag.
mutation { organization(id: $organizationId) { updateBidTag } }
Example
mutation UpdateBidTag(
$organizationId: ID!
$input: UpdateBidTagInput!
) {
organization(id: $organizationId) {
updateBidTag(input: $input) {
bidTag
errors
}
}
}