This GraphQL query fetches All Names_Letter_XES
0
1
2
3
4
5
6
7
8
9
10
11
12
query allNames_Letter_XES { names_Letter_XES (skip: 0, limit: 3) { results { ACL Genre Letter Name createdAt id updatedAt } } }
{ "data": { "names_Letter_XES": { "results": [ { "ACL": null, "Genre": "male", "Letter": "X", "Name": "Xander", "createdAt": "2020-01-23T22:48:40.316Z", "id": "37ibzAB642", "updatedAt": "2020-01-23T22:48:40.316Z" }, { "ACL": null, "Genre": "female", "Letter": "X", "Name": "Xiomara", "createdAt": "2020-01-23T22:48:40.316Z", "id": "nLOh5IO6wh", "updatedAt": "2020-01-23T22:48:40.316Z" }, { "ACL": null, "Genre": "male", "Letter": "X", "Name": "Xzavier", "createdAt": "2020-01-23T22:48:40.316Z", "id": "7yiDbR1BaY", "updatedAt": "2020-01-23T22:48:40.316Z" } ] } } }