The Database Hub | Back4App
The Database Hub | Back4App
How it works
  • Log In
  • Sign Up

  1. Back4App
  2. ๐Ÿ‡บ๐Ÿ‡ธ United States Universities
Public

55
136
55
136
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Universities

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"
        }
      ]
    }
  }
}