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

  1. Back4App
  2. 🇺🇸 US Counties Dataset
Public

72
173
72
173
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Areas

This GraphQL query fetches All Areas


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
query allAreas {
      areas (skip: 0, limit: 3) {
        results {
          ACL
          FIPSCode
          MSACode
          MSAName
          countyCode
          countyName
          createdAt
          id
          state
          stateAbbreviation
          townshipCode
          updatedAt
        }
      }
    }
{
  "data": {
    "areas": {
      "results": [
        {
          "ACL": null,
          "FIPSCode": "01",
          "MSACode": "  11500",
          "MSAName": "Anniston-Oxford-Jacksonville AL",
          "countyCode": "015",
          "countyName": "Calhoun County",
          "createdAt": "2019-12-17T15:23:19.860Z",
          "id": "ygm6NbTG2S",
          "state": "Alabama",
          "stateAbbreviation": "AL",
          "townshipCode": "000",
          "updatedAt": "2019-12-17T15:23:19.860Z"
        },
        {
          "ACL": null,
          "FIPSCode": "01",
          "MSACode": "  13820",
          "MSAName": "Birmingham-Hoover AL",
          "countyCode": "021",
          "countyName": "Chilton County",
          "createdAt": "2019-12-17T15:23:19.860Z",
          "id": "8az5uWRCXt",
          "state": "Alabama",
          "stateAbbreviation": "AL",
          "townshipCode": "000",
          "updatedAt": "2019-12-17T15:23:19.860Z"
        },
        {
          "ACL": null,
          "FIPSCode": "01",
          "MSACode": "  19300",
          "MSAName": "Daphne-Fairhope-Foley AL",
          "countyCode": "003",
          "countyName": "Baldwin County",
          "createdAt": "2019-12-17T15:23:19.860Z",
          "id": "NNYekTy0dA",
          "state": "Alabama",
          "stateAbbreviation": "AL",
          "townshipCode": "000",
          "updatedAt": "2019-12-17T15:23:19.860Z"
        }
      ]
    }
  }
}