MLH-Fellowship / FellowshipWrapup

A showcase of all your work done during the MLH Fellowship
MIT License
6 stars 0 forks source link

Github GraphQL query caching #12

Closed gmelodie closed 4 years ago

gmelodie commented 4 years ago

Create caching for Github API queries. The way me and @IamCathal are thinking about this is having a directory structure like so:

.
├── frontend
├── backend
│   ├── main.go
│   └── util.go
├── data
│   ├── gmelodie
│   │   ├── issue.json
│   │   └── pullRequest.json
│   └── IamCathal
│       ├── issue.json
│       └── pullRequest.json
└── README.md

If a user is found under data, don't make the API calls again.

sebastiancrossa commented 4 years ago

This is an interesting idea. Let's try to make it work.

IamCathal commented 4 years ago

Caching of data was implemented in https://github.com/MLH-Fellowship/FellowshipWrapup/pull/16