GraphQL Basics in 6 minutes - Creating a Weather API with Apollo Server

Опубликовано: 13 Май 2026
на канале: Justin Brooks
30,401
619

GraphQL is a powerful opensource query language developed by Facebook. It solves the problem of building good, intuitive, and well-designed APIs. In the last few years, GraphQL has grown in traction and been adopted by many small and large companies.

Today we will be building a GraphQL weather app with Node and Typescript. We will start by defining what GraphQL is at a high level and then configuring a GraphQL server using the Apollo Framework. We will use techniques commonly seen in large-scale microservice architectures to wrap around an external Weather API.

#graphql


Discord -   / discord  
Twitter -   / jsbroks  


⚡ RESOURCES ⚡
GraphQL - https://graphql.org/
Source Code - https://github.com/codingwithjustin/g...


⭐ TIMESTAMPS ⭐
0:00 - Intro
0:51 - What is GraphQL?
1:56 - Disadvantages to GraphQL
2:35 - Creating a Weather GraphQL Server
3:05 - Rest API Data Source
4:01 - Defining GraphQL Schema
5:01 - GraphQL Resolvers
6:20 - Conclusion