This GraphQL query fetches All NamesLists
0
1
2
3
4
5
6
7
8
9
10
11
12
query allNamesLists { namesLists (skip: 0, limit: 3) { results { ACL Genre Letter Name createdAt id updatedAt } } }
{ "data": { "namesLists": { "results": [ { "ACL": null, "Genre": "male", "Letter": "A", "Name": "Abram", "createdAt": "2020-01-23T22:01:41.275Z", "id": "dWLjiHtFaU", "updatedAt": "2020-01-23T22:01:41.275Z" }, { "ACL": null, "Genre": "male", "Letter": "A", "Name": "Aarav", "createdAt": "2020-01-23T22:01:41.275Z", "id": "XL5xKfMVkk", "updatedAt": "2020-01-23T22:01:41.275Z" }, { "ACL": null, "Genre": "female", "Letter": "A", "Name": "Abbey", "createdAt": "2020-01-23T22:01:41.275Z", "id": "FOdQrD9sV5", "updatedAt": "2020-01-23T22:01:41.275Z" } ] } } }