siyfion
06/20/2018, 2:50 PMUser
type with a many-to-many relationship defined with a Tag
type. The createUser
and updateUser
allow us to specify tags: { connection: [ { id: "..." }, { id: "..." } ] }
which will create a relationship between the user and the specified tags (via id
). However, when we use upsertUser
and do the same, it runs successfully but NONE of the connections/relationships are created.weakky
06/20/2018, 2:53 PMsiyfion
06/20/2018, 2:59 PMweakky
06/20/2018, 3:10 PMnilan
06/20/2018, 3:12 PMconnect
, disconnect
and delete
, not with create
, update
and upsert
.siyfion
06/20/2018, 3:14 PM1.10
weakky
06/20/2018, 3:15 PMintroduce support to execute connect, disconnect and delete within upsert
. Doesn’t this mean that connect
mutations are now executed within upsert
mutations ?siyfion
06/20/2018, 3:15 PMnilan
06/20/2018, 3:36 PMnilan
06/20/2018, 3:36 PMmedelman
06/20/2018, 3:51 PMsiyfion
06/22/2018, 8:57 AM1.10
that needed fixing asap.