This GraphQL query fetches All Hostings
0
1
2
3
4
5
6
7
8
9
10
query allHostings { hostings (skip: 0, limit: 3) { results { ACL Hosting_Option createdAt id updatedAt } } }
{ "data": { "hostings": { "results": [ { "ACL": null, "Hosting_Option": "Self-Hosting", "createdAt": "2020-05-09T19:12:11.578Z", "id": "UC2yE1YsEu", "updatedAt": "2020-05-09T19:12:11.578Z" }, { "ACL": null, "Hosting_Option": "Managed-Hosting", "createdAt": "2020-05-09T19:12:18.906Z", "id": "SdwOdzH1w4", "updatedAt": "2020-05-09T19:12:18.906Z" }, { "ACL": null, "Hosting_Option": "Single-Cloud", "createdAt": "2020-05-09T19:12:28.754Z", "id": "oJPX8IdQwA", "updatedAt": "2020-05-09T19:12:28.754Z" } ] } } }