This GraphQL query fetches All Ratings
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query allRatings { ratings (skip: 0, limit: 3) { results { ACL createdAt id radio { id } updatedAt user { id } } } }
{ "data": { "ratings": { "results": [ { "ACL": null, "createdAt": "2019-11-25T12:30:31.153Z", "id": "7CnXfLLsHW", "radio": { "id": "Ju5btll0BJ" }, "updatedAt": "2019-11-25T12:30:31.153Z", "user": { "id": "c9nA7Kr0JQ" } }, { "ACL": null, "createdAt": "2019-11-25T13:06:20.014Z", "id": "O8lJG0xJMI", "radio": { "id": "c3ETmCnAuw" }, "updatedAt": "2019-11-25T13:06:20.014Z", "user": { "id": "c9nA7Kr0JQ" } }, { "ACL": null, "createdAt": "2019-11-25T12:44:47.681Z", "id": "JZp5HhMqe2", "radio": { "id": "28iX3TKhbD" }, "updatedAt": "2019-11-25T12:44:47.681Z", "user": { "id": "c9nA7Kr0JQ" } } ] } } }