This GraphQL query fetches All Inboxes
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
query allInboxes { inboxes (skip: 0, limit: 3) { results { ACL adPointer { id } createdAt id image { url name } inboxID message receiver { id } sender { id } updatedAt } } }
{ "data": { "inboxes": { "results": [ { "ACL": null, "adPointer": { "id": "tlaBzGh1YN" }, "createdAt": "2019-07-18T13:54:34.242Z", "id": "aLkRC4OoNQ", "image": null, "inboxID": "sHWxwEFn2u8P4HPYGh3g", "message": "Hi", "receiver": { "id": "8P4HPYGh3g" }, "sender": { "id": "sHWxwEFn2u" }, "updatedAt": "2019-07-18T13:54:34.242Z" }, { "ACL": null, "adPointer": { "id": "tlaBzGh1YN" }, "createdAt": "2019-07-18T13:55:12.634Z", "id": "jweWcn2LXv", "image": null, "inboxID": "8P4HPYGh3gsHWxwEFn2u", "message": "Hello", "receiver": { "id": "sHWxwEFn2u" }, "sender": { "id": "8P4HPYGh3g" }, "updatedAt": "2019-07-18T13:55:12.634Z" }, { "ACL": null, "adPointer": { "id": "tlaBzGh1YN" }, "createdAt": "2019-07-18T13:57:26.705Z", "id": "JNrjnrXlx2", "image": null, "inboxID": "vlc36r0UuQ8P4HPYGh3g", "message": "Hi", "receiver": { "id": "8P4HPYGh3g" }, "sender": { "id": "vlc36r0UuQ" }, "updatedAt": "2019-07-18T13:57:26.705Z" } ] } } }