This GraphQL query fetches All Names_Letter_LS
0
1
2
3
4
5
6
7
8
9
10
11
12
query allNames_Letter_LS { names_Letter_LS (skip: 0, limit: 3) { results { ACL Genre Letter Name createdAt id updatedAt } } }
{ "data": { "names_Letter_LS": { "results": [ { "ACL": null, "Genre": "male", "Letter": "L", "Name": "Lamar", "createdAt": "2020-01-23T22:30:56.148Z", "id": "6tZq1CQMRb", "updatedAt": "2020-01-23T22:30:56.148Z" }, { "ACL": null, "Genre": "male", "Letter": "L", "Name": "Lark", "createdAt": "2020-01-23T22:30:56.148Z", "id": "J00j66sEGH", "updatedAt": "2020-01-23T22:30:56.148Z" }, { "ACL": null, "Genre": "male", "Letter": "L", "Name": "Lance", "createdAt": "2020-01-23T22:30:56.148Z", "id": "MdK3e7G16e", "updatedAt": "2020-01-23T22:30:56.148Z" } ] } } }