This GraphQL query fetches All US_Zip_Codes
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
query allUS_Zip_Codes { uS_Zip_Codes (skip: 0, limit: 3) { results { ACL Acceptable_cities Area_codes County Latitude Longitude Primary_city Remarks State Timezone Type US_Zip_Code Unacceptable_cities country createdAt estimated_population id updatedAt } } }
{ "data": { "uS_Zip_Codes": { "results": [ { "ACL": null, "Acceptable_cities": null, "Area_codes": 631, "County": "Suffolk County", "Latitude": 40.81, "Longitude": -73.04, "Primary_city": "Holtsville", "Remarks": null, "State": "NY", "Timezone": "America/New_York", "Type": "UNIQUE", "US_Zip_Code": 501, "Unacceptable_cities": "I R S Service Center", "country": "US", "createdAt": "2020-02-11T17:24:49.491Z", "estimated_population": 384, "id": "n4q6JYkGCy", "updatedAt": "2020-02-11T17:24:49.491Z" }, { "ACL": null, "Acceptable_cities": null, "Area_codes": 787, "County": null, "Latitude": 18.38, "Longitude": -67.18, "Primary_city": "Aguada", "Remarks": null, "State": "PR", "Timezone": null, "Type": "STANDARD", "US_Zip_Code": 602, "Unacceptable_cities": "Alts De Aguada, Bo Guaniquilla, Comunidad Las Flores, Ext Los Robles, Urb Isabel La Catolica", "country": "US", "createdAt": "2020-02-11T17:24:49.491Z", "estimated_population": 0, "id": "e2VNrROPDr", "updatedAt": "2020-02-11T17:24:49.491Z" }, { "ACL": null, "Acceptable_cities": null, "Area_codes": 787939, "County": "Adjuntas", "Latitude": 18.16, "Longitude": -66.72, "Primary_city": "Adjuntas", "Remarks": null, "State": "PR", "Timezone": "America/Puerto_Rico", "Type": "STANDARD", "US_Zip_Code": 601, "Unacceptable_cities": "Colinas Del Gigante, Jard De Adjuntas, Urb San Joaquin", "country": "US", "createdAt": "2020-02-11T17:24:49.491Z", "estimated_population": 0, "id": "B99PXN3pif", "updatedAt": "2020-02-11T17:24:49.491Z" } ] } } }