koa-graphql-mongodb icon indicating copy to clipboard operation
koa-graphql-mongodb copied to clipboard

Tutorial how to set up koa with graphql and mongodb

Results 7 koa-graphql-mongodb issues
Sort by recently updated
recently updated
newest added

Bumps [mongoose](https://github.com/Automattic/mongoose) from 5.4.7 to 5.13.15. Changelog Sourced from mongoose's changelog. 5.13.15 / 2022-08-22 fix: backport fix for CVE-2022-2564 #12281 shubanker docs: fix broken link from findandmodify method deprecation #11366...

dependencies

Bumps [thenify](https://github.com/thenables/thenify) from 3.3.0 to 3.3.1. Changelog Sourced from thenify's changelog. 3.3.1 / 2020-06-18 fixes [0d94a24] - fix: remove eval (#30) (Yiyu He ) Commits 1d054b4 Release 3.3.1 0d94a24 fix:...

dependencies

👋 Hello, we've received a report for a potential critical severity security issue in your repository. #### Next Steps 1️⃣ Visit **https://huntr.dev/bounties/1-other-indreklasn/koa-graphql-mongodb** for more advisory information. 2️⃣ **[Sign-up](https://huntr.dev/)** to validate...

Bumps [bson](https://github.com/mongodb/js-bson) from 1.1.0 to 1.1.6. Release notes Sourced from bson's releases. 1.1.6 The MongoDB Node.js team is pleased to announce version 1.1.6 of the bson module! The BSON library...

dependencies

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.11 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...

dependencies

In your removeGadget mutation, the findOneAndDelete parameter is incorrect. It should be: ` return Gadget.findOneAndDelete({_id: args.id}).exec() ` If you have just args.id, it deletes any item. Love your tutorial, btw...

replaced Gadget.findOneAndDelete with Gadget.findByIdAndDelete. findOneAndDelete deletes the first record regardless of what arguents are passed.