This GraphQL query fetches All MessagesCenters
0
1
2
3
4
5
6
7
8
9
10
11
12
query allMessagesCenters { messagesCenters (skip: 0, limit: 3) { results { ACL For Message Title createdAt id updatedAt } } }
{ "data": { "messagesCenters": { "results": [ { "ACL": null, "For": "DRIVERS", "Message": "Did you know that 75% of driver say that they earn more with us then a normal job.", "Title": "Full Time drivers!", "createdAt": "2020-04-23T05:40:37.966Z", "id": "G64BFHDmYu", "updatedAt": "2020-04-23T05:41:24.508Z" }, { "ACL": null, "For": "DRIVERS", "Message": "Feedback suggests that 90% of drivers feel happier with driving with us due to flexibility of work!", "Title": "Live your life freely!", "createdAt": "2020-04-23T05:41:09.854Z", "id": "wP8eGTRgo9", "updatedAt": "2020-04-23T05:41:11.975Z" }, { "ACL": null, "For": "USERS", "Message": "Booking a ride hardly takes a minute, get started with your ride now.", "Title": "Instant Rides", "createdAt": "2020-04-23T05:41:19.292Z", "id": "3XsCKGWsIH", "updatedAt": "2020-04-23T05:42:03.213Z" } ] } } }