This GraphQL query fetches All Names_Letter_IS
0
1
2
3
4
5
6
7
8
9
10
11
12
query allNames_Letter_IS { names_Letter_IS (skip: 0, limit: 3) { results { ACL Genre Letter Name createdAt id updatedAt } } }
{ "data": { "names_Letter_IS": { "results": [ { "ACL": null, "Genre": "female", "Letter": "I", "Name": "Ilona", "createdAt": "2020-01-23T22:26:56.825Z", "id": "YXDU8DyFlu", "updatedAt": "2020-01-23T22:26:56.825Z" }, { "ACL": null, "Genre": "male", "Letter": "I", "Name": "Ian", "createdAt": "2020-01-23T22:26:56.824Z", "id": "EqE2v6Ub8D", "updatedAt": "2020-01-23T22:26:56.824Z" }, { "ACL": null, "Genre": "female", "Letter": "I", "Name": "Idabelle", "createdAt": "2020-01-23T22:26:56.824Z", "id": "tYDjguvgax", "updatedAt": "2020-01-23T22:26:56.824Z" } ] } } }