This GraphQL query fetches All Names_Letter_US
0
1
2
3
4
5
6
7
8
9
10
11
12
query allNames_Letter_US { names_Letter_US (skip: 0, limit: 3) { results { ACL Genre Letter Name createdAt id updatedAt } } }
{ "data": { "names_Letter_US": { "results": [ { "ACL": null, "Genre": "female", "Letter": "U", "Name": "Ula", "createdAt": "2020-01-23T22:45:22.263Z", "id": "BoHwWZj39L", "updatedAt": "2020-01-23T22:45:22.263Z" }, { "ACL": null, "Genre": "male", "Letter": "U", "Name": "Urijah", "createdAt": "2020-01-23T22:45:22.263Z", "id": "zVBqFUfVAh", "updatedAt": "2020-01-23T22:45:22.263Z" }, { "ACL": null, "Genre": "female", "Letter": "U", "Name": "Unique", "createdAt": "2020-01-23T22:45:22.263Z", "id": "hnvyLyqd1V", "updatedAt": "2020-01-23T22:45:22.263Z" } ] } } }