This GraphQL query fetches All Radios
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
query allRadios { radios (skip: 0, limit: 3) { results { ACL createdAt id logo { url name } name rating updatedAt urlRadio voiting } } }
{ "data": { "radios": { "results": [ { "ACL": null, "createdAt": "2019-12-07T13:53:49.403Z", "id": "hC6Cu19nMi", "logo": { "url": "https://parsefiles.back4app.com/7A3PflA7WPchWjreQKBoRxBNtNi083Q5hsKw2Pqd/87f899f56202aaaf61ed33e8a83d5109_userpicture.png", "name": "87f899f56202aaaf61ed33e8a83d5109_userpicture.png" }, "name": "My radio station", "rating": 0, "updatedAt": "2019-12-07T13:53:49.403Z", "urlRadio": "http://air2.radiorecord.ru:9003/fut_320", "voiting": 0 } ] } } }