Probably a pretty basic question, but my searching...
# orm-help
h
Probably a pretty basic question, but my searching online is failing me: Is there a way, using Prisma binding, to
connect
a new 1-1 relationship between
Entity_A
and
Entity_C
, where a relationship between
Entity_A
and
Entity_B
already exists, without first explicitly calling
disconnect
on that relationship? My initial assumption was that
connect
should override in this case, and replace the old relationship with the new one... but that appears to not be the case.