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