This GraphQL query fetches All Names_Letter_CS
0
1
2
3
4
5
6
7
8
9
10
11
12
query allNames_Letter_CS { names_Letter_CS (skip: 0, limit: 3) { results { ACL Genre Letter Name createdAt id updatedAt } } }
{ "data": { "names_Letter_CS": { "results": [ { "ACL": null, "Genre": "male", "Letter": "C", "Name": "Cap", "createdAt": "2020-01-23T22:18:26.407Z", "id": "VapBEKx3Zg", "updatedAt": "2020-01-23T22:18:26.407Z" }, { "ACL": null, "Genre": "female", "Letter": "C", "Name": "Caldonia", "createdAt": "2020-01-23T22:18:26.405Z", "id": "IU8XDrvHDc", "updatedAt": "2020-01-23T22:18:26.405Z" }, { "ACL": null, "Genre": "female", "Letter": "C", "Name": "Camilla", "createdAt": "2020-01-23T22:18:26.407Z", "id": "Zzzq9K7dDf", "updatedAt": "2020-01-23T22:18:26.407Z" } ] } } }