As you start exploring more and more the world of GraphQL APIs, you may want to get more out of your resolvers. As you decompose your business logic into multiple microservices, all advertising a GraphQL Api, you may encounter a need to query them...
You’ve definitely heard about version management, but how much do you know about it? Multiple tools exist but the one that has become predominant as of today is certainly git. So we’re going to focus on git flows for software’s version control. ...
Docusaurus 🦖 is a static-site generator based on Node.js with react components and made by Facebook. It has been open sourced now the v2 is in beta, so we’ll check out this new alternative. You may already have seen it while browsing in the jest...
In this article we will talk about bulk mutation, the desire to update multiple entities with a single input. Some common use case would be if we had queries or mutations that take one entity at a time, and we want to: Query multiple entities ...
This is the 100\(^{th}\) article! 🎉 So I decided to go with a subject about the software development’s career path. You may wonder at some point how to evolve and get promotions while still maintaining your technology edge. While it may not exist...
Continuing this GraphQL series, after Apollo 🚀 and GraphQL for the basics, then the Advanced 🛰 Apollo Graphql queries article following by the Apollo GraphQL 👩🚀 mutations, let’s dive into scalars. As said on GraphQL.org, after all the types, the...
Jenkins is an open source automation server that is often used as a CI/CD tool to run your automated tests and deployment pipeline. It was created in 2011, a while back and has a range of possibilities because of its compatibility with multiple ve...
\(\KaTeX\) is self-promoting itself as the fastest math typesetting library for the web. It is open source and renders TeX mathematics notation as plain html notation, so it can be rendered in any browser. It is an open source library available o...
As per the mozilla reference, reduce or Array.prototype.reduce() is a method that executes a “reducer” callback function on each element of the array passing the result of the reducer on the next element for calculation until it went through all...
To follow up on the modern javascript notation, let’s have a deep look at the Object, the javascript data type. Most javascript objects are instances of Object, like in java where most class inherit from the Object class. You’d better get acquain...