JavaScript

Latest Posts
Apollo server: the connector and model layer

In this tutorial we are going to be focusing on the model and connector layers. The model layer is what our resolvers are gonna use. They are there to expose a generic interface to our resolvers that have abstracted whatever database and possible ORM used in the connectors layer.

Using local NPM package on open source Travis CI

When creating software with multiple contributors I find it utterly important to have a continuous integration server running at all times. It makes the health of a project very visible if combined with badges…

Apollo server: using the GraphQL Schema Languages

GraphQL and Apollo are two technologies I’m very excited about. In this post I’ll show you how to setup an Apollo Server using the GraphQL schema language. There are other approaches on how to implement your schema. In another tutorial I’ll show you how to do so using a GraphQL-JS Schema.