You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are 3 "modes" for returning results: `all`, `latest`, and `shield`. The first two are pretty self explanatory, and `shield` can be used to generate badges for your repo's README.md (shields.io).
106
95
107
96
```
108
97
GET https://progress.deco.mp/data/project:/version:/?mode=all
109
98
```
99
+
```
100
+
GET https://progress.deco.mp/data/project:/version:/?mode=latest
101
+
```
102
+
Note that the category and measure are required for mode `shield`.
103
+
```
104
+
GET https://progress.deco.mp/data/project:/version:/category:/?mode=shield&measure=MEASURE
105
+
```
106
+
107
+
**Note:** Specifying a category in the request URL is optional for `all` and `latest` modes. If the category is not specified, results from all categories will be returned. However, for `shield`, it is necessary to specify the category and measure in the request url, as shown above.
Build a website to render progress graph using a library such as [uPlot](https://github.com/leeoniya/uPlot) and [Chart.js](https://www.chartjs.org).
121
+
You can use the "latest" mode to retrieve just the latest datapoint or render full graphs using a library such as [uPlot](https://github.com/leeoniya/uPlot) or [Chart.js](https://www.chartjs.org)
0 commit comments