This GraphQL query fetches All Favorites
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query allFavorites { favorites (skip: 0, limit: 3) { results { ACL createdAt id station { id } updatedAt user { id } } } }
{ "data": { "favorites": { "results": [ { "ACL": null, "createdAt": "2019-11-28T12:33:57.090Z", "id": "J8GiETGTFq", "station": { "id": "Ju5btll0BJ" }, "updatedAt": "2019-11-28T12:33:57.090Z", "user": { "id": "c9nA7Kr0JQ" } }, { "ACL": null, "createdAt": "2019-11-23T19:19:54.917Z", "id": "M9JQgHO2D7", "station": { "id": "dKXZB7flDg" }, "updatedAt": "2019-11-23T19:19:54.917Z", "user": { "id": "B0CzHbqfs0" } } ] } } }