The Database Hub | Back4App
The Database Hub | Back4App
How it works
  • Log In
  • Sign Up

  1. SIMPLEAPP
  2. Transistor S | live radio for Android
Public

32
36
32
36
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Radios

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
        }
      ]
    }
  }
}