Posts for Umoren samuel

Software Developer developing content around GraphQL and JAMStack.

Upgrading Express GraphQL Server from ApolloServer v1 to ApolloServer v2

In this article, we would be learning how to upgrade a GraphQL server built with apollo-server-express to ApolloServer v2.0. ApolloServer v2 introduced some changes to writing GraphQL servers. This new API for building GraphQL servers simplifies the process and it’s less dependent on external libraries. In fact, you can now write your GraphQL server without […]

September 11, 2020 in GraphQl

Handling Vue Authentication using GraphQL API

In this tutorial, we will be using Vuex and ApolloClient connected to a GraphQL API to handle authentication in our Vuejs app. Authentication and Authorization Authentication and Authorization are most often used interchangeably, but they’re different concepts entirely. Authentication identifies or verifies who a user is while Authorization is validating the routes (or parts of the app) the authenticated user can […]

August 28, 2020 in GraphQl & Tutorials & Vue