can I use updateMany with relations? ie ``` mutat...
# orm-help
d
can I use updateMany with relations? ie
Copy code
mutation {
  updateManyWidgets(
    data: {
      history: { create: [{ when: "2018-08-08", status: PENDING }] }
    }
  ) {
    count
  }
}
n
No, those nested mutations will not be executed: https://github.com/prismagraphql/prisma/issues/2010