This GraphQL query fetches All Names_Letter_QS
0
1
2
3
4
5
6
7
8
9
10
11
12
query allNames_Letter_QS { names_Letter_QS (skip: 0, limit: 3) { results { ACL Genre Letter Name createdAt id updatedAt } } }
{ "data": { "names_Letter_QS": { "results": [ { "ACL": null, "Genre": "female", "Letter": "Q", "Name": "Queenie", "createdAt": "2020-01-23T23:11:30.386Z", "id": "T3ik3AG6i2", "updatedAt": "2020-01-23T23:11:30.386Z" }, { "ACL": null, "Genre": "female", "Letter": "Q", "Name": "Quiana", "createdAt": "2020-01-23T23:11:30.386Z", "id": "kXErJnqclx", "updatedAt": "2020-01-23T23:11:30.386Z" }, { "ACL": null, "Genre": "male", "Letter": "Q", "Name": "Quentin", "createdAt": "2020-01-23T23:11:30.386Z", "id": "eZKyrr66Z5", "updatedAt": "2020-01-23T23:11:30.386Z" } ] } } }