Apollo nexus schema смотреть последние обновления за сегодня на .
In this video we will use a code-first approach to building a GraphQL API. This means that the code we write will generate the GraphQL schema as an artifact rather than something we have to maintain ourselves. We'll be building our own GraphQL resume API in Next.js, Apollo Server, Nexus Schema, and TypeScript. Follow along and try making changes by adding your own data. Special thanks to AppSignal for partnering with me on this content! Please check them out at 🤍 and use the coupon code "leigh" for 10% off your first year. It's free to try out for a month! Join me on Discord! 🤍 Source code: 🤍 Deployed version: 🤍 Part Two: 🤍 00:00 Introduction 02:40 AppSignal 03:40 Creating Apollo Server 09:00 Creating Schema with Nexus 12:00 Defining Query Type 18:00 Creating Bio Type 22:30 Custom Scalars 24:00 Generating Schema and Types 34:40 Creating Position Type 47:20 Review
Find the latest React.js talks & workshops at 🤍 🗓 Talk recording from GraphQL Galaxy Conference 2020 Website - 🤍 Watch the full version of the all conference talks including QnA sessions and panel discussions with the inventors of GraphQL on GitNation Video platform , follow the link → 🤍 Developing a real-world full-stack app often involves tedious threading of data across multiple layers of the stack. This is particularly undesirable during prototyping phases where the main goal may be just to demonstrate an idea or design. It’s also risky when going to production since data inconsistencies between the layers can lead to bugs. Nexus Schema is a library for building code-first, type-safe GraphQL APIs and can greatly help with this velocity and type-safety dilemma. In this talk, we'll look at how to build GraphQL APIs faster and with the benefits of type safety using Nexus Schema.
In this video we recreate the Next.js example setting up Apollo Client v3, Apollo Server, Nexus Schema, with support for SSR. Special thanks to AppSignal for partnering with me on this content! Please check them out at 🤍 and use the coupon code "leigh" for 10% off your first year. It's free to try out for a month! Join me on Discord! 🤍 Source code: 🤍 Next.js Example: 🤍 00:00 Introduction 01:37 AppSignal 02:30 Setting up Apollo Server in API route 05:42 Creating Schema with Nexus Schema 08:00 Setting up Apollo Client v3 17:50 Creating Isomorphic Link (HttpLink + SchemaLink) 24:00 Querying data with useQuery 26:30 Querying data via SSR
Tutorial for getting started with Apollo Server, NexusJS and Prisma. Creating a standalone & typesafe GrapQL API. sourcecode: 🤍
In this video, you'll learn how to add support for Pagination on the Server using Nexus and how to send a paginated query using Apollo Client Timestamps: 00:00 - Flaws of our GraphQL setup 01:26 - Code-first GraphQL APIs using Nexus Useful links: • Nexus makeSchema 🤍 • 🤍 • GitHub repo: 🤍 • Part 2 blog post: 🤍 • Part 1 blog post: 🤍 👉 Previous video: GraphQL Pagination using Apollo Client and on the Server - 🤍 👉 Check out the full playlist: 🤍 📚 Resources: ✅ Subscribe to Prisma: 🤍 ✅ Get help from the Prisma Community: 🤍 ✅ Learn more about Prisma: ◭ Website: 🤍 ◭ Docs: 🤍 ◭ Quickstart: 🤍 💬 Connect with Prisma: Twitter: 🤍 Instagram: 🤍 TikTok: 🤍 Facebook: 🤍 LinkedIn: 🤍 Prisma sponsors human-reviewed, professional closed captions for ANY video valuable to our community (for example, about: Node.js, TypeScript & Type Safety, Prisma, databases, etc). Get your FREE captions here: 🤍
Here we combine Prisma with Nexus Schema to create a powerful, simple, and typed setup for defining our GraphQL schema and integrating it with our database via Prisma. Source Code: 🤍 Join this channel! 🤍 Join me on Discord! 🤍 Nexus Prisma Plugin: 🤍 Prisma Migrate: 🤍 00:00 Introduction 01:10 TypeScript Setup 02:35 Apollo Server Setup 05:00 Nexus Schema Setup 08:00 Initializing Prisma 14:15 Creating Context 16:45 Nexus Prisma Plugin 27:00 Nexus Prisma CRUD
In this video, you'll learn how to define Object Types using Nexus, a GraphQL schema construction library Useful links: • Nexus docs - `extendType`: 🤍 • Nexus: 🤍 • The problems of "Schema-first" GraphQL Development: 🤍 • GitHub repo: 🤍 • Part 2 blog post: 🤍 • Part 1 blog post: 🤍 👉 Next video: Setting up Apollo Client 3 with Next.js - 🤍 👉 Previous video: Creating Object Types Using Nexus - 🤍 👉 Check out the full playlist: 🤍 📚 Resources: ✅ Subscribe to Prisma: 🤍 ✅ Get help from the Prisma Community: 🤍 ✅ Learn more about Prisma: ◭ Website: 🤍 ◭ Docs: 🤍 ◭ Quickstart: 🤍 💬 Connect with Prisma: Twitter: 🤍 Instagram: 🤍 TikTok: 🤍 Facebook: 🤍 LinkedIn: 🤍 Prisma sponsors human-reviewed, professional closed captions for ANY video valuable to our community (for example, about: Node.js, TypeScript & Type Safety, Prisma, databases, etc). Get your FREE captions here: 🤍
Introduction to Nexus Schema, a NodeJS library for building just the schema aspect of GraphQL APIs with code. I'll build a simple API while touring its primary features, including strong type-safety. About the Speaker: Jason Kuhrt is an engineer at Prisma where he initially worked on Nexus Framework but now splits time between Prisma Client and the Prisma GraphQL Working Group. He studied in Design but has worked as a developer in mostly startups for the past 10 years ranging from frontend to backend, DevOps, and systems architecture. Language of presentation: English. Link to the presentation: 🤍 _ Feedback: 🤍 _ Website: 🤍 Discord chat: 🤍 _ Node.JS Wroclaw hosted by DataArt Website: 🤍 Twitter: 🤍 Facebook: 🤍
apidays Paris 2019 Turning your Database into a GraphQL API with Prisma & Nexus Thibaud Courtoison, Consultant 🤍 Zenika Speakers slides from the conference: 🤍 Learn more on APIscene, the global media made by the community for the community: 🤍 Explore the API ecosystem with the API Landscape: 🤍 Deep dive into the API industry with our reports: 🤍 Subscribe to our global newsletter: 🤍
In this video, you'll learn how to add support for Pagination on the Server using Nexus and how to send a paginated query using Apollo Client Timestamps: 00:00 - Pagination at the database level using Prisma 03:57 - What a paginated GraphQL query looks like 7:03 - Creating Object types to follow the Relay Pagination spec 9:55 - Updating the resolver to support Pagination 21:20 - Sending paginated query using Apollo Client Useful links: • Pagination Overview in GraphQL: 🤍 • GraphQL Pagination Relay Spec: 🤍 • GitHub repo: 🤍 • Part 2 blog post: 🤍 • Part 1 blog post: 🤍 👉 Previous video: GraphQL Pagination using Apollo Client and on the Server - 🤍 👉 Check out the full playlist: 🤍
Powered by Restream 🤍 For 🤍, we have a separate API server hosted on Heroku. Our front is a Next.js app hosted on Vercel. With this session, I'm trying to update add seamless auth support between these services using next-auth.
◭ The goal is to briefly introduce what Nexus Prisma is and then focus on its internals. While Nexus Prisma is not a very active project the talk should be of interest to people curious how a Prisma generator can work generally too. ◭ Jason is a software engineer with a passion for developer experience, system design, and tooling. Educated in design theory, practice, and ethics he became fascinated by the systems aspects of software and the community of open source. Over years his journey progressed from the frontend to the back where he has delved into APIs services DevOps architecture and more. He has made creative and leadership contributions in many environments, mostly startups. Today he leads the Developer Productivity team at Prisma responsible for the Control Plane product of the Prisma Data Platform. ◭ Get in touch with Jason: 🤍 ◭ Join our GraphQL Berlin Meetup group: 🤍 —————————————————— 📚 Learn more about Prisma • Website: 🤍 • Docs: 🤍 • Quickstart: 🤍 —————————————————— ❓ Get help with Prisma issues • Slack: 🤍 • GitHub: 🤍 • Stackoverflow: 🤍 —————————————————— 💬 Follow Prisma on social media • Twitter: 🤍 • Instagram: 🤍 • TikTok: 🤍 • Facebook: 🤍 • LinkedIn: 🤍 —————————————————— 🔠Professional captions for your technical videos Prisma sponsors human-reviewed, professional closed captions for ANY video valuable to our community (for example, about: Node.js, TypeScript & Type Safety, Prisma, databases, etc). Get your FREE captions here: 🤍 —————————————————— ✅ Subscribe to Prisma's YouTube channel 🤍
We initialize a Next.js project and setup our schema with GraphQL Nexus. Then we expose our GraphQL server using a Next.js endpoint. Then we configure the cors middleware to work correctly. 🔗 Links Series Playlist: 🤍 Next.js CORS Example: 🤍 👨💻 Code 🤍 📲 Connect with me 🤍 🤍 🤍
GraphQL Nexus is a code-first approaching to creating graphQL servers. This code-first approach provides great support for type safety and a reduction in graphql boilerplate. I highly recommend using this framework in your next project. In this tutorial series, we use GraphQL Nexus, in conjunction with Prisma and Apollo Server, to make a simple graphql Server. Code from this tutorial: 🤍 Prisma Nexus articles: 🤍 Link to prisma examples (Starter code): 🤍
Prisma is an open-source ORM that makes it fun and safe to work with a database like MySQL, Postgres, SQL Server, or MongoDB. It generates a type-safe client library to provide an awesome DX in any Node.js or JavaScript project. This video is NOT sponsored. #database #webdev #100SecondsOfCode 🔗 Resources - Prisma Docs 🤍 - Prisma Source Code 🤍 - MySQL Full Tutorial 🤍 🔥 Get More Content - Upgrade to PRO Upgrade to Fireship PRO at 🤍 Use code lORhwXd2 for 25% off your first payment. 🎨 My Editor Settings - Atom One Dark - vscode-icons - Fira Code Font 🔖 Topics Covered - What is Prisma - Is Prisma an ORM? - Prisma Quickstart - What is Prisma used for? - How to use Prisma in Node.js - Using Prisma with a relational database - Prisma compared to Sequalize or TypeORM
In this video, you'll learn how to build a GraphQL API in a Next.js app using Apollo Server 3. Timestamps: 00:00 - Installing apollo-server-micro, graphql & micro-cors 00:50 - Defining a GraphQL schema 03:47 - Including a database URL + Seeding the database 05:13 - Creating the GraphQL endpoint 11:45 - Taking a look at Apollo Studio 14:25 - Initializing Prisma Client 17:35 - Updating the resolver 19:04 - Creating the GraphQL context Useful links: • Apollo Studio: 🤍 • Apollo Server 3: apollographql.com/docs/apollo-server/ • Initializing Prisma Client in a Next.js Project: 🤍 • GraphQL spec: 🤍 • Resolver arguments: 🤍 • GitHub repo: 🤍 • Part 2 blog post: 🤍 • Part 1 blog post: 🤍 👉 Next video: Building a GraphQL API using Nexus, Prisma and Next.js - 🤍 👉 Previous video: REST vs. GraphQL - 🤍 👉 Check out the full playlist: 🤍 📚 Resources: ✅ Subscribe to Prisma: 🤍 ✅ Get help from the Prisma Community: 🤍 ✅ Learn more about Prisma: ◭ Website: 🤍 ◭ Docs: 🤍 ◭ Quickstart: 🤍 💬 Connect with Prisma: Twitter: 🤍 Instagram: 🤍 TikTok: 🤍 Facebook: 🤍 LinkedIn: 🤍 Prisma sponsors human-reviewed, professional closed captions for ANY video valuable to our community (for example, about: Node.js, TypeScript & Type Safety, Prisma, databases, etc). Get your FREE captions here: 🤍
In partnership with GraphQL Madrid, we present this special edition of our GraphQL online meetup!
Join us on November 29, 5 PM CET, for this very special edition of GraphQL Berlin Meetup, where we join forces with the GitHub Africa Meetup group! 💪 Connect with GraphQL enthusiasts worldwide, get inspired by the talks, and join the Q&A session. During this meetup, we will host a raffle, where you can win a copy of the "Designing Data-Intensive Applications" by Martin Kleppmann. 🎁 Our superstar lineup: 🎙 Alex Ruheni (🤍ruheni_alex) - "Type-safe GraphQL APIs with Prisma and Nexus" 🎙 Eli Perkins (🤍_eliperkins) -"Unlocking Static Type Superpowers with GraphQL Introspection" 🎙 Kudakwashe Mupeni (🤍 - "E2E Testing for GraphQL API using Prisma, Docker & Jest"
On rentre dans le vif du sujet avec le design de schema GraphQL. J'vous donne mon petit secret pour savoir comment design une API GraphQL dans les règles de l'art. ⌨️ Le code: 🤍 📗 Creation de query et mutation orienté "client first" 📗 Ajouter prettier INSTAGRAM: 🤍 TWITTER: 🤍 WEBSITE: 🤍 ❓N'hésitez pas à poser vos questions ou faire des demandes pour les prochains lives.
Custom authentication flow setup for a GraphQL API. Using Prisma, Nexus, Apollo Server and GraphQL shield. Explains how to handle access tokens and refresh tokens for signup, login and refreshing part 1: 🤍 dependencies: yarn add bcryptjs jsonwebtoken date-fns graphql-shield ms cookie-parser yarn add -D 🤍types/bcryptjs 🤍types/jsonwebtoken 🤍types/ms 🤍types/cookie-parser generic authentication utils: 🤍 source code: 🤍 Closed captions sponsored by Prisma. Get yours for free here: 🤍
Prisma NextJS Apollo-GraphQL Tutorial Enjoy! Demo: 🤍 Repository: 🤍 #nextjs #apollographql
I go over some project changes before creating a new mutation for our schema. We create an input type and an object type to return to our users. We implement server-side input validation. Then, I go over how to do error handling in a GraphQL resolver. 🔗 Links Series Playlist: 🤍 Nexus Schema Build Command: 🤍 👨💻 Code 🤍 📲 Connect with me 🤍 🤍 🤍
In this video we do some authenticated CRUD operations from our React front-end which sends data to our GraphQL API. We use Prisma to automate out SQL operations. We also use GraphQL Nexus to write our schema and resolvers. This is an amazingly productive setup when using GraphQL with TypeScript. 00:00 Introduction 00:30 Edit Prisma Schema 2:50 GraphQL Nexus Schema 7:20 Protected Resolver Setup 9:59 createPost Mutation 11:24 getPosts Query 14:18 GraphQL Codegen 16:07 Quick JWT & Cookie Fix 17:23 Front End Setup 19:20 Formik Form with ChakraUI 23:37 Creating Posts 24:16 Showing Posts in the UI 29:31 Stay Tuned! 🔗 Links Series Playlist: 🤍 Prisma Docs: 🤍 GraphQL Nexus Docs: 🤍 👨💻 Code 🤍 📲 Connect with me 🤍 🤍 🤍
В этом видео мы избавимся от заглушки в библиотеке users-store, добавим зависимости apollo для фронтенда, переработаем корневые модули приложения frontend-client, разделив обязанности между ними. 00:00 - приветствие 00:15 - устанавлваем зависимости apollo 00:55 - правим tsconfig 03:50 - копируем настройки из документации и правим под себя 06:20 - запускаем, "лечим" предупреждение AMD 12:05 - разделяем app.module на два (добавляем core.module) 17:30 - еще одна итерация разделения, HttpClient 21:50 - проверяем работоспособность 25:20 - добавляем общие интерфейсы в библиотеку интерфейсов 29:10 - правим библиотеку user-scope, добавляем интерфейсы пользователя, избавляемся от заглушки проект на гитхабе: 🤍 код : 🤍 телеграм-чат: 🤍
This video will teach you how you can implement the authorization with jwt, graphql shield, graphql middleware and implement token based authorization. Github link: 🤍 #gql, #jwt, #express, #javascript, #grahql, #apollo, #express, #apollo-express, #jsonwebtoken, #mongodb, #jwt, #jsonwebtoken, #graphql-shield, #graphql-middleware, #graphql-schema, #token-based-authorization
Ayrıcalıklardan yararlanmak için bu kanala katılın: 🤍 1:1 Call Ayırmak İçin 🤍 Ücretsiz İçeriklerime Destek Vermek İçin: Patreon : ttps://🤍patreon.com/codingwithdidem Kanalın büyümesi ve daha büyük bir kitleye ulaşması için videoları beğenip kanalıma abone olmayı unutmayın! :) 🤍 Eğer daha fazlasını öğrenmek isterseniz ; Full ReactJS Eğitimi : 🤍 Full ReduxJS Eğitimi : 🤍
In this video we talk about TypeScript and GraphQL, and how to automatically generate the response and variable types using the Apollo CLI tool. Course Want to go deeper with Next.js? Join me in my Next Level Next.js course where over 29 videos and 8 hours of content we'll build a full application from start to finish. We use TypeScript, GraphQL, Prisma, Apollo, Mapbox, Firebase and lots more. 🤍 Links Apollo CLI - 🤍 Starting Code - 🤍 Source Code - 🤍 Connect Join this channel - 🤍 Join me on Discord - 🤍 Timeline 00:00 - Introduction 04:30 - Apollo CLI Codegen 09:55 - Apollo CLI Download Schema 11:00 - Apollo CLI Endpoint
In this video, you'll learn how to define Object Types using Nexus, a GraphQL schema construction library Timestamps: 00:00 - Creating the Link Object Type 2:10 - Creating the User Object Type 4:17- Passing the User and Link Object Types to the `makeSchema` function Useful links: • Nexus docs - Object Type: 🤍 • Nexus: 🤍 • The problems of "Schema-first" GraphQL Development: 🤍 • GitHub repo: 🤍 • Part 2 blog post: 🤍 • Part 1 blog post: 🤍 👉 Next video: Creating Object Types Using Nexus - 🤍 👉 Previous video: Building a GraphQL API using Nexus, Prisma, and Next.js - 🤍 👉 Check out the full playlist: 🤍 📚 Resources: ✅ Subscribe to Prisma: 🤍 ✅ Get help from the Prisma Community: 🤍 ✅ Learn more about Prisma: ◭ Website: 🤍 ◭ Docs: 🤍 ◭ Quickstart: 🤍 💬 Connect with Prisma: Twitter: 🤍 Instagram: 🤍 TikTok: 🤍 Facebook: 🤍 LinkedIn: 🤍 Prisma sponsors human-reviewed, professional closed captions for ANY video valuable to our community (for example, about: Node.js, TypeScript & Type Safety, Prisma, databases, etc). Get your FREE captions here: 🤍
Changement de décors. Mes problèmes de connections perdurent. Mais on a bien avancé quand même. ⌨️ Le code : 🤍 📗 Création de nouveau schema pour la base de données avec Prisma 📗Création de première Query et de la première mutation pour vérifier que tout roule 📗On parle des relations entre les tables avec Prisma ❓N'hésitez pas à poser vos questions ou faire des demandes pour les prochains lives.
When working with a GraphQL server many times you want to get data from an external api. Apollo can cache these requests using Rest DataSource. Code: 🤍 Links from video: 🤍 🤍 If you like cooking, checkout my side project: 🤍 Join the Discord: 🤍 Patreon: 🤍 Follow Me Online Here: GitHub: 🤍 LinkedIn: 🤍 Instagram: 🤍 Twitter: 🤍 #benawad TikTok: 🤍 Follow me online: 🤍 #benawad
How to use the schema and feature flags to enable client teams to move faster and more independently. We will go through examples of shipping code on iOS to millions of people "broken" and turning it on weeks later when back-end teams catch up to client teams. Key takeaways: * Nullability is a powerful tool * How to protect your future schema * What issues you might face with more nullability
Setup Apollo client in NextJS - Checkout my latest course. A full course - including 44 videos - is now available on Cloudflare Workers, the future of cloud edge micro services at 🤍 I will issue three 100% free coupons every month. Subscribe, like the video, and comment "I want the entire course" or something of the sorts :) Music: 🤍bensound.com
En este curso aprenderás a desarrollar un CMS con GraphQL, Next.js, React Hooks, Context API y Suspense. Repositorios: 🤍 🤍 Únete a nuestro Slack: 🤍
Graphql with nest js | How to use graphql in nest js | nest js + graphql Nest js:- Nest (NestJS) is a framework for building efficient, scalable Node.js server-side applications. It uses progressive JavaScript, is built with and fully supports TypeScript (yet still enables developers to code in pure JavaScript) and combines elements of OOP (Object Oriented Programming), FP (Functional Programming), and FRP (Functional Reactive Programming). Under the hood, Nest makes use of robust HTTP Server frameworks like Express (the default) and optionally can be configured to use Fastify as well! Nest provides a level of abstraction above these common Node.js frameworks (Express/Fastify), but also exposes their APIs directly to the developer. This gives developers the freedom to use the myriad of third-party modules which are available for the underlying platform GraphQL :- GraphQL is a query language for APIs and a runtime for fulfilling those queries with your existing data. GraphQL provides a complete and understandable description of the data in your API, gives clients the power to ask for exactly what they need and nothing more, makes it easier to evolve APIs over time, and enables powerful developer tools. ■■■■■■■■■■■■■■■■■■■■■■■■■■ git repo:- 🤍 ■■■■■■■■■■■■■■■■■■■■■■■■■■ How to deploy the static site on s3 and map that with domain:- 🤍 How to set GitHub Actions For CICD with AWS EC2 | GitHub workflows | In Hindi | GitHub Action |CICD: 🤍 Git SSH key in Hindi |How to set up an ssh key for git? | GIT + SSH | Github ssh key setup 🤍 #nestjs #node #graphql #setup #developer #webdevelopment
Blog Post: 🤍 Github: 🤍 Headless WordPress resources: 🤍 CONTENTS: 00:00 - Intro 00:44 - Prerequisites 01:13 - Polylang plugin 03:30 - Setting Permalinks 04:02 - Polylang settings 05:01 - Populating data in English & Spanish 07:24 - WPGraphQL & Polylang extension 09:30 - Create a multiple posts query in WPGraphQL 11:55 - Next.js clone starter 13:39 - Next.js Internationalization 14:40 - Navbar.js and Next Link 19:22 - Home Page and multiple post query 20:50 - Single post query in WPGraphQL 23:52 - Dynamic Routes and Single post query 24:31 - getStaticPaths and flatMap method 26:37 - Spin up localhost:3000 27:05 - Outro
You can now get Slack notifications when schema changes happen in Apollo Graph Manager. 🤍
Tune in for the 25th edition of GraphQL Berlin Meetup! 🤗 Connect with the GraphQL enthusiasts worldwide, get inspired by the talks, join the Q&A session and win prizes in the raffle. 🎁 🌍 00:00:00 Intro by Daniel Norman 00:02:34 Matteo Collina (🤍matteocollina) - "GraphQL caching demystified", 00:34:06 Jason Kuhrt (🤍JasonKuhrt) - "Diving into the new Nexus Prisma", 01:18:26 Jamie Barton (🤍notrab) - "Federating the Content Layer with GraphCMS". 🌍 Join our meetup group: 🤍 🌍
Ryan is a full-stack JavaScript developer working at Prisma in developer relations for GraphQL. He's a course author, teaching on subjects ranging from the basics of front end development to full-stack web security. He also hosts the Entrepreneurial Coder Podcast. Developing a real-world full-stack app often involves tedious threading of data across multiple layers of the stack. This is particularly undesirable during prototyping phases where the main goal may be just to demonstrate an idea or design. It’s also risky when going to production since data inconsistencies between the layers can lead to bugs. In this talk, I'll show how a well designed GraphQL API can be one solution to this velocity and type-safety dilemma via Nexus combined with Prisma. Ryan's Twitter: 🤍 ✨ Join our Prisma Meetup group here: 🤍 Next: 👉 Check Next video: Bringing a public GraphQL API from the whiteboard to production - 🤍 👉 Check Previous video: Low Code GraphQL With Neo4j - 🤍 📚 Resources: ✅ Subscribe to Prisma: 🤍 ✅ Get help from the Prisma Community: 🤍 ✅ Learn more about Prisma: ◭ Website: 🤍 ◭ Docs: 🤍 ◭ Quickstart: 🤍 💬 Connect with Prisma: Twitter: 🤍 Instagram: 🤍 TikTok: 🤍 Facebook: 🤍 LinkedIn: 🤍 Prisma sponsors human-reviewed, professional closed captions for ANY video valuable to our community (for example, about: Node.js, TypeScript & Type Safety, Prisma, databases, etc). Get your FREE captions here: 🤍
GraphQL Nexus is a code-first approaching to creating graphQL servers. This code-first approach provides great support for type safety and a reduction in graphql boilerplate. I highly recommend using this framework in your next project. In this tutorial series, we use GraphQL Nexus, in conjunction with Prisma and Apollo Server, to make a simple graphql Server. Code from this tutorial: 🤍 Prisma Nexus articles: 🤍 Link to prisma examples (Starter code): 🤍
Setup a GraphQL microservice using libraries such as Apollo Server, Codegen, Prisma, Typescript, PostgreSQL. Starter project github: 🤍 Part 1 (this video) Finish github: 🤍 Finished project github: 🤍 Timestamps 0:00 Intro 2:00 Apollo server init 4:00 gql playground 6:21 structure setup 8:40 typeDefs 10:40 queries 14:10 schema 17:00 schema vs codefirst 18:15 codegen 25:30 setup postgresql 26:30 prisma 31:10 prisma migration 32:35 prisma studio 34:00 prisma integrate 44:20 mutations 52:54 unit testing mock prisma client