stepzen.hashnode.devHow to Build Angular Search Functionality with GraphQL?In this tutorial, you will learn how to build a fullstack Angular application that uses GraphQL to fetch data from a server. The application we'll build together will display a list of blog posts fetched from a GraphQL API using Apollo Client, includ...Mar 28, 2023·11 min read
stepzen.hashnode.devBuilding a JWT Login Flow with Auth0, Next.js, and StepZenAlmost every frontend application needs some form of authentication. This post will build a JWT login flow with Auth0, Next.js, and StepZen. Auth0 Next.js authentication library nextjs-auth0, a library maintained by Auth0 to make integrating with Nex...Feb 15, 2023·13 min read
stepzen.hashnode.devComparing GraphQL Directives: Type System Vs. Executable Directive LocationsHave you ever wondered why some directives have to be added to your GraphQL schemas while others you can only use in runtime? That's because there are two types of directive locations: type system directive locations and executable directive location...Feb 1, 2023·7 min read
stepzen.hashnode.devAuthenticating GraphQL APIs with OAuth 2.0There are many different ways to handle authentication in GraphQL, but one of the most common is to use OAuth 2.0 - and, more specifically, JSON Web Tokens (JWT) or Client Credentials. In this blog post, we'll look at how to use OAuth 2.0 to authenti...Jan 25, 2023·9 min read
stepzen.hashnode.devHandling Authentication in GraphQL with JWT and Auth0JSON Web Token (JWT) is a signed, URL-safe token that stores and encrypts information about a user in a JSON object. This form of authentication is growing in popularity and is widely used for handling a user's session in an application. What makes a...Dec 3, 2022·6 min read