This GraphQL query fetches All Names_Letter_MS
0
1
2
3
4
5
6
7
8
9
10
11
12
query allNames_Letter_MS { names_Letter_MS (skip: 0, limit: 3) { results { ACL Genre Letter Name createdAt id updatedAt } } }
{ "data": { "names_Letter_MS": { "results": [ { "ACL": null, "Genre": "female", "Letter": "M", "Name": "Madora", "createdAt": "2020-01-23T22:33:22.605Z", "id": "34SXHlzvSQ", "updatedAt": "2020-01-23T22:33:22.605Z" }, { "ACL": null, "Genre": "female", "Letter": "M", "Name": "Mable", "createdAt": "2020-01-23T22:33:22.605Z", "id": "SuVVvK7he0", "updatedAt": "2020-01-23T22:33:22.605Z" }, { "ACL": null, "Genre": "female", "Letter": "M", "Name": "Macel", "createdAt": "2020-01-23T22:33:22.605Z", "id": "9hF7vrcgEh", "updatedAt": "2020-01-23T22:33:22.605Z" } ] } } }