This GraphQL query fetches All Names_Letter_WS
0
1
2
3
4
5
6
7
8
9
10
11
12
query allNames_Letter_WS { names_Letter_WS (skip: 0, limit: 3) { results { ACL Genre Letter Name createdAt id updatedAt } } }
{ "data": { "names_Letter_WS": { "results": [ { "ACL": null, "Genre": "male", "Letter": "W", "Name": "Walton", "createdAt": "2020-01-23T22:47:28.411Z", "id": "8VhKwfcQf5", "updatedAt": "2020-01-23T22:47:28.411Z" }, { "ACL": null, "Genre": "male", "Letter": "W", "Name": "Waino", "createdAt": "2020-01-23T22:47:28.411Z", "id": "DoMQDwHi7C", "updatedAt": "2020-01-23T22:47:28.411Z" }, { "ACL": null, "Genre": "female", "Letter": "W", "Name": "Wava", "createdAt": "2020-01-23T22:47:28.411Z", "id": "lULgBkGGgP", "updatedAt": "2020-01-23T22:47:28.411Z" } ] } } }