This GraphQL query fetches All Names_Letter_GS
0
1
2
3
4
5
6
7
8
9
10
11
12
query allNames_Letter_GS { names_Letter_GS (skip: 0, limit: 3) { results { ACL Genre Letter Name createdAt id updatedAt } } }
{ "data": { "names_Letter_GS": { "results": [ { "ACL": null, "Genre": "female", "Letter": "G", "Name": "Gabriella", "createdAt": "2020-01-23T22:23:56.781Z", "id": "ulGVNF7px8", "updatedAt": "2020-01-23T22:23:56.781Z" }, { "ACL": null, "Genre": "male", "Letter": "G", "Name": "Gasper", "createdAt": "2020-01-23T22:23:56.781Z", "id": "lEa2zeeVYp", "updatedAt": "2020-01-23T22:23:56.781Z" }, { "ACL": null, "Genre": "male", "Letter": "G", "Name": "Gabe", "createdAt": "2020-01-23T22:23:56.781Z", "id": "jjtCEO0LsW", "updatedAt": "2020-01-23T22:23:56.781Z" } ] } } }