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

  1. SIMPLEAPP
  2. Streamfy - Aplicativo de TV ao Vivo para Android
Public

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

All Favorites

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