Mutation
mutation RemoveUserFromActiveBillingRota($input: RemoveUserFromActiveBillingRotaInput!) {
removeUserFromActiveBillingRota(input: $input) {
billingRota {
onRotaUserIds
offRotaUserIds
}
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"userId": "id"
}
}Response
{
"data": {
"removeUserFromActiveBillingRota": {
"billingRota": {
"onRotaUserIds": [
"id"
],
"offRotaUserIds": [
"id"
]
},
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Mutations
removeUserFromActiveBillingRota
Moves a user off the active billing rota, freeing their eng-rota seat for another team member. The user must already hold a billing rota seat. Requires the billingSeat:edit permission.
MUTATION
removeUserFromActiveBillingRota(input: RemoveUserFromActiveBillingRotaInput!): RemoveUserFromActiveBillingRotaOutput!Arguments
input
required
billingRota
error
Mutation
mutation RemoveUserFromActiveBillingRota($input: RemoveUserFromActiveBillingRotaInput!) {
removeUserFromActiveBillingRota(input: $input) {
billingRota {
onRotaUserIds
offRotaUserIds
}
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"userId": "id"
}
}Response
{
"data": {
"removeUserFromActiveBillingRota": {
"billingRota": {
"onRotaUserIds": [
"id"
],
"offRotaUserIds": [
"id"
]
},
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Was this page helpful?

