Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tillathehun0/dataloader-talk

A talk with slides and demo about GraphQL and integrating a library called dataloader
https://github.com/tillathehun0/dataloader-talk

apollo-server cache dataloader express graphql marp

Last synced: 27 days ago
JSON representation

A talk with slides and demo about GraphQL and integrating a library called dataloader

Awesome Lists containing this project

README

        

# dataloader-talk
A talk with slides and demo about GraphQL and integrating a library called dataloader

# Start

- `npm i`
- `npm start`

Then visit `http://localhost:4000/graphql` for the GraphQL Playground and start making queries

# Tech

This a simple Apollo Server, sitting on top of a SQLite Datebase

```
├── db.sqlite // the SQLite Database
├── package-lock.json
├── package.json
├── slides
│ ├── img
│ └── slides.md
└── src
├── dataloader // Dataloader builders
├── apollo.js // ApolloServer mount
├── db // Sequelize Database models
├── graphql // GraphQL types and resolvers
├── index.js
└── main.js // bootstrap
```