Hi, I have the following query
mutation service {
updateService(
id: "279295423485575687"
data: {
name: "asdf service",
active: true,
approved: PENDING
serviceCategoryL3: {
disconnect: ["291691372022333953"]
}
}) {
_id
name
serviceCategoryL3 {
data {
_id
name
}
}
}
}
which is mainly meant to disconnect Service
from ServiceCategoryL3
but it does not seem to work, as can be seen from the query result
{
"data": {
"updateService": {
"_id": "279295423485575687",
"name": "asdf service",
"serviceCategoryL3": {
"data": [
{
"_id": "291691372022333953",
"name": "Beatbox"
}
]
}
}
}
Am I doing something wrong here or is this a bug?