Skip to content

Instantly share code, notes, and snippets.

View sync's full-sized avatar

Anthony Mittaz sync

View GitHub Profile
@sync
sync / GraphqlServer.re
Created October 13, 2019 06:31
GraphQL Reason server
open Lwt.Infix;
open Graphql_lwt;
type role =
| User
| Admin;
type user = {
id: int,
name: string,
## 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)