This GraphQL query fetches All Names_Letter_ES
0
1
2
3
4
5
6
7
8
9
10
11
12
query allNames_Letter_ES { names_Letter_ES (skip: 0, limit: 3) { results { ACL Genre Letter Name createdAt id updatedAt } } }
{ "data": { "names_Letter_ES": { "results": [ { "ACL": null, "Genre": "male", "Letter": "E", "Name": "Eben", "createdAt": "2020-01-23T22:21:34.980Z", "id": "sZF3Mqx33K", "updatedAt": "2020-01-23T22:21:34.980Z" }, { "ACL": null, "Genre": "male", "Letter": "E", "Name": "Earley", "createdAt": "2020-01-23T22:21:34.980Z", "id": "7j9eo2nHLa", "updatedAt": "2020-01-23T22:21:34.980Z" }, { "ACL": null, "Genre": "female", "Letter": "E", "Name": "Earlean", "createdAt": "2020-01-23T22:21:34.980Z", "id": "YZ8Qzj7KwS", "updatedAt": "2020-01-23T22:21:34.980Z" } ] } } }