This GraphQL query fetches All Universities
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allUniversities { universities (skip: 0, limit: 3) { results { ACL createdAt id name state { id } updatedAt } } }
{ "data": { "universities": { "results": [ { "ACL": null, "createdAt": "2019-12-19T14:32:38.689Z", "id": "oTVZhXxDpk", "name": "Fairfield University", "state": { "id": "RgEjBdhWjE" }, "updatedAt": "2019-12-19T14:32:38.689Z" }, { "ACL": null, "createdAt": "2019-12-19T14:32:38.689Z", "id": "7cBnoTz6AC", "name": "Housatonic Community College", "state": { "id": "RgEjBdhWjE" }, "updatedAt": "2019-12-19T14:32:38.689Z" }, { "ACL": null, "createdAt": "2019-12-19T14:32:38.689Z", "id": "pKAutXNyeJ", "name": "Northwestern Connecticut Community College", "state": { "id": "RgEjBdhWjE" }, "updatedAt": "2019-12-19T14:32:38.689Z" } ] } } }