You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 14, 2021. It is now read-only.
is there a plan to add an upsert to nested writes? The use case is when you dont know if the nested record exists or not
say im creating a movie with a list of n actors, some already exist and some do not.
using either create or connect wont work since i dont know beforehand which exist or not.
the only current solution is to loop and upsert the entire list and then always use connect.
so instead of connect, create also add an upsert
is there a plan to add an upsert to nested writes? The use case is when you dont know if the nested record exists or not
say im creating a
moviewith a list of nactors, some already exist and some do not.using either
createorconnectwont work since i dont know beforehand which exist or not.the only current solution is to loop and upsert the entire list and then always use
connect.so instead of
connect,createalso add anupsertbut instead
the first one is not very ACID obviously.