考虑下面的结构
mutation createBusiness {
createBusiness(
data: {
...
staff: { create: [{ name: "Petros", email: "example@gmail.com" }] }
services: {
create: [
{
name: "Hair Wash"
duration: 20
staff: { ... }
}
]
}
}
) {
id
}
}
因此,基本上,企业提供服务,并且具有人员。但是,这些服务由特定人员或所有人员来运行。因此,问题在于,在创建业务时,会创建员工,还需要创建服务。
但是,我很难将服务人员成员与同时创建的人员联系起来。
有什么想法吗?