This GraphQL query fetches All Contacts
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
query allContacts { contacts (skip: 0, limit: 3) { results { ACL createdAt firstName id kindMovie myArray { ...on Element { value } } phone updatedAt } } }
{ "data": { "contacts": { "results": [ { "ACL": null, "createdAt": "2018-08-21T14:19:27.762Z", "firstName": "Natalia", "id": "bW5EmoTmiv", "kindMovie": "action", "myArray": null, "phone": "+5512988098677", "updatedAt": "2018-08-21T14:19:27.762Z" }, { "ACL": null, "createdAt": "2018-08-21T14:21:55.339Z", "firstName": "dsdsdsds", "id": "JO9VkUPEqW", "kindMovie": "drama", "myArray": null, "phone": "+5512988098677", "updatedAt": "2018-08-21T14:21:55.339Z" }, { "ACL": null, "createdAt": "2018-08-21T14:26:16.704Z", "firstName": "Tania", "id": "4oGgGM9Zxd", "kindMovie": "action", "myArray": null, "phone": "+5512988155237", "updatedAt": "2018-08-21T14:26:16.704Z" } ] } } }