This GraphQL query fetches All Names_Letter_AS
0
1
2
3
4
5
6
7
8
9
10
11
12
query allNames_Letter_AS {
names_Letter_AS (skip: 0, limit: 3) {
results {
ACL
Genre
Letter
Name
createdAt
id
updatedAt
}
}
}{
"data": {
"names_Letter_AS": {
"results": [
{
"ACL": null,
"Genre": "female",
"Letter": "A",
"Name": "Aaliyah",
"createdAt": "2020-01-23T22:14:22.732Z",
"id": "to6eD9HGdT",
"updatedAt": "2020-01-23T22:14:22.732Z"
},
{
"ACL": null,
"Genre": "male",
"Letter": "A",
"Name": "Acy",
"createdAt": "2020-01-23T22:14:22.733Z",
"id": "KkSBDpcelA",
"updatedAt": "2020-01-23T22:14:22.733Z"
},
{
"ACL": null,
"Genre": "male",
"Letter": "A",
"Name": "Abdul",
"createdAt": "2020-01-23T22:14:22.732Z",
"id": "wfvnsLPDff",
"updatedAt": "2020-01-23T22:14:22.732Z"
}
]
}
}
}