This GraphQL query fetches All Names_Letter_BS
0
1
2
3
4
5
6
7
8
9
10
11
12
query allNames_Letter_BS { names_Letter_BS (skip: 0, limit: 3) { results { ACL Genre Letter Name createdAt id updatedAt } } }
{ "data": { "names_Letter_BS": { "results": [ { "ACL": null, "Genre": "female", "Letter": "B", "Name": "Beadie", "createdAt": "2020-01-23T22:16:34.834Z", "id": "HzdU4hNZZa", "updatedAt": "2020-01-23T22:16:34.834Z" }, { "ACL": null, "Genre": "female", "Letter": "B", "Name": "Belle", "createdAt": "2020-01-23T22:16:34.834Z", "id": "HGHhNXawJs", "updatedAt": "2020-01-23T22:16:34.834Z" }, { "ACL": null, "Genre": "male", "Letter": "B", "Name": "Bertha", "createdAt": "2020-01-23T22:16:34.835Z", "id": "J5DAsShe1U", "updatedAt": "2020-01-23T22:16:34.835Z" } ] } } }