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

  1. Paul Datasets
  2. 🎬 List of Movies, Directors, and Stars
Public

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

All Genres

This GraphQL query fetches All Genres


0
1
2
3
4
5
6
7
8
9
10
query allGenres {
      genres (skip: 0, limit: 3) {
        results {
          ACL
          createdAt
          genre
          id
          updatedAt
        }
      }
    }
{
  "data": {
    "genres": {
      "results": [
        {
          "ACL": null,
          "createdAt": "2020-01-31T11:56:57.099Z",
          "genre": "Adventure",
          "id": "d51SZzI2rS",
          "updatedAt": "2020-01-31T11:56:57.099Z"
        },
        {
          "ACL": null,
          "createdAt": "2020-01-31T11:56:57.140Z",
          "genre": "Drama",
          "id": "VFfxMz16q5",
          "updatedAt": "2020-01-31T11:56:57.140Z"
        },
        {
          "ACL": null,
          "createdAt": "2020-01-31T11:56:57.203Z",
          "genre": "Mystery",
          "id": "Ugelvu2def",
          "updatedAt": "2020-01-31T11:56:57.203Z"
        }
      ]
    }
  }
}