This GraphQL query fetches All Names_Letter_OS
0
1
2
3
4
5
6
7
8
9
10
11
12
query allNames_Letter_OS { names_Letter_OS (skip: 0, limit: 3) { results { ACL Genre Letter Name createdAt id updatedAt } } }
{ "data": { "names_Letter_OS": { "results": [ { "ACL": null, "Genre": "female", "Letter": "O", "Name": "Olena", "createdAt": "2020-01-23T22:35:19.396Z", "id": "o3TmjEhqtc", "updatedAt": "2020-01-23T22:35:19.396Z" }, { "ACL": null, "Genre": "female", "Letter": "O", "Name": "Odette", "createdAt": "2020-01-23T22:35:19.396Z", "id": "FkH8mIVPWV", "updatedAt": "2020-01-23T22:35:19.396Z" }, { "ACL": null, "Genre": "female", "Letter": "O", "Name": "Odile", "createdAt": "2020-01-23T22:35:19.396Z", "id": "Xv2htGZ0Fu", "updatedAt": "2020-01-23T22:35:19.396Z" } ] } } }