This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open Lwt.Infix; | |
open Graphql_lwt; | |
type role = | |
| User | |
| Admin; | |
type user = { | |
id: int, | |
name: string, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Learning resources | |
- [Video Course - egghead - Up and Running with Remix from Kent C. Dodds](https://egghead.io/courses/up-and-running-with-remix-b82b6bb6) | |
- [Video Course - egghead - Learn Remix by building a Social Media Platform with TypeScript and Prisma](https://egghead.io/courses/learn-remix-by-building-a-social-media-platform-with-typescript-and-prisma-cddb0550) | |
- [Video Course - LevelUp Tutorial - Realtime Remix with Supabase from Melbourne](https://leveluptutorials.com/tutorials/realtime-remix-with-supabase/create-a-supabase-project) | |
- [Blog Post](https://www.prisma.io/blog/fullstack-remix-prisma-mongodb-1-7D0BfTXBmB6r) |
OlderNewer