Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tillathehun0/dataloader-talk
- Owner: TillaTheHun0
- Created: 2020-02-28T01:38:35.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-27T20:20:53.000Z (over 3 years ago)
- Last Synced: 2024-10-04T12:01:05.819Z (about 2 months ago)
- Topics: apollo-server, cache, dataloader, express, graphql, marp
- Language: JavaScript
- Size: 2.78 MB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```