:wave: I’m trying to accomplish a nested upsert . ...
# orm-help
f
👋 I’m trying to accomplish a nested upsert . Basically I want to create a
Post
where each post has many `Tag`s. It looks like I have to use a workaround via https://github.com/prisma/prisma/issues/2194 which requires I check for existence of each tag and use
connect
or
create
depending on existence of each tag. Does that mean I have to make a DB call for each tag I want to upsert (e.g. 10 tags requires 10 existence checks)?