Hello guys! In the attached image I have a set of...
# orm-help
a
Hello guys! In the attached image I have a set of available operations for an image field. I want to use set and create at the same time but it seems that set is always executed after create, no matter if the order is create and set or vice versa. Can I do something to execute set before create? Thanks in advance.
b
just call two requests. one for
set
and another for
create
.
a
I want to keep set and create inside of a single request.
I think this is a reasonable answer for my situation: https://www.prisma.io/forum/t/set-replace-many-to-many-relation-via-connect-in-prisma/4768/5 @bkstorm Mostly, is what you said, thank you for the answer.