I am trying to `createMany` with a nested create,...
# orm-help
f
I am trying to
createMany
with a nested create, but it is not supported.
Copy code
Privilege.createMany({  data: { invite: { create: { data } }}});
What alternative do I have? Thanks.
n
Hey Faizan 👋 Instead of createMany you could use just create, you can loop over your array of data and use nested create. Here’s an example of using nested create