This GraphQL query fetches All Names_Letter_HS
0
1
2
3
4
5
6
7
8
9
10
11
12
query allNames_Letter_HS { names_Letter_HS (skip: 0, limit: 3) { results { ACL Genre Letter Name createdAt id updatedAt } } }
{ "data": { "names_Letter_HS": { "results": [ { "ACL": null, "Genre": "male", "Letter": "H", "Name": "Hamilton", "createdAt": "2020-01-23T22:25:33.737Z", "id": "jXkP1boCSh", "updatedAt": "2020-01-23T22:25:33.737Z" }, { "ACL": null, "Genre": "female", "Letter": "H", "Name": "Halle", "createdAt": "2020-01-23T22:25:33.737Z", "id": "rv7UFm2z2M", "updatedAt": "2020-01-23T22:25:33.737Z" }, { "ACL": null, "Genre": "female", "Letter": "H", "Name": "Hali", "createdAt": "2020-01-23T22:25:33.737Z", "id": "m7PqMZveLo", "updatedAt": "2020-01-23T22:25:33.737Z" } ] } } }