Daniel Kennedy
Daniel Kennedy
I get the same. I upgraded to the newest version of the package and every time I make a change to a file it hangs and then throws a few...
Yeah, it could probably benefit from being an internal function. It could simplify the example above to something like this: ```js async function transactionExample(db) { const collection1 = db.collection('collection1'); const...
A potentially more elegant solution would also be to use an async generator where you `yield` db operations that you want part of the transaction and the runner function calls...
We'd like to use it to pass _n_-mutations in a set order. Our specific use case is the removal of _n_ items in a hierarchical list (where you can't remove...
I was considering the `removeAll(ids: [ID]!)` route. The only downside is we lose the nice error tracing that GraphQL gives us. i.e. If ID number 3 fails, then the multiple...
Another use case: we only want to monitor deployments for a specific branch (ie. `main`). Right now, every PR that might kick off a build workflow is pushing its status...
@SENTINELITE is there an ETA for the next release? 🙂
@SENTINELITE sounds good, thanks!
Looks like that fixed it! Thanks so much @SENTINELITE . My Stream Deck just got way more useful 🙂
Node 4.0+ has native support for promises with the global [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) object. Some libraries also use helper methods from libraries such as [Bluebird](http://bluebirdjs.com/docs/getting-started.html) that wrap the standard callback functions in...