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
I was wondering if I can modify the updateOne or createOne generated resolvers to insert/update depending on whether the document exists.
Usually, I would just create a custom resolver and pass the { upsert: true } option to mongoose. But it would be a lot of work to make a ton of custom resolvers for something that can easily be generated but with a small change.
Please let me know if there is any way to accomplish this! Thanks!
The text was updated successfully, but these errors were encountered:
As a user, I would appreciate this upsert feature a lot !
I see there is in mongoose already a method findOneAndUpdate that embeds upsert feature, may be implementation wouldn't be too complex, if just creating a new resolver that uses this
I was wondering if I can modify the updateOne or createOne generated resolvers to insert/update depending on whether the document exists.
Usually, I would just create a custom resolver and pass the
{ upsert: true }
option to mongoose. But it would be a lot of work to make a ton of custom resolvers for something that can easily be generated but with a small change.Please let me know if there is any way to accomplish this! Thanks!
The text was updated successfully, but these errors were encountered: