This GraphQL query fetches All Names_Letter_FS
0
1
2
3
4
5
6
7
8
9
10
11
12
query allNames_Letter_FS { names_Letter_FS (skip: 0, limit: 3) { results { ACL Genre Letter Name createdAt id updatedAt } } }
{ "data": { "names_Letter_FS": { "results": [ { "ACL": null, "Genre": "female", "Letter": "F", "Name": "Felicia", "createdAt": "2020-01-23T22:22:47.927Z", "id": "CUxcwZJ87E", "updatedAt": "2020-01-23T22:22:47.927Z" }, { "ACL": null, "Genre": "male", "Letter": "F", "Name": "Fenton", "createdAt": "2020-01-23T22:22:47.927Z", "id": "lh2QB4Gokn", "updatedAt": "2020-01-23T22:22:47.927Z" }, { "ACL": null, "Genre": "female", "Letter": "F", "Name": "Fairy", "createdAt": "2020-01-23T22:22:47.927Z", "id": "uUSBaBlIDX", "updatedAt": "2020-01-23T22:22:47.927Z" } ] } } }