This GraphQL query fetches All Neighborhoods
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query allNeighborhoods { neighborhoods (skip: 0, limit: 3) { results { ACL borough createdAt geoPosition { latitude longitude } id name summary updatedAt } } }
{ "data": { "neighborhoods": { "results": [ { "ACL": null, "borough": "California", "createdAt": "2020-05-26T18:48:04.474Z", "geoPosition": { "latitude": 34.47277778, "longitude": -118.18361111 }, "id": "GlOuiSXTYX", "name": "Acton", "summary": "Acton is a town and an unincorporated census-designated place in Los Angeles County, California, near the Antelope Valley. According to the 2010 census, Acton had a population of 7,596.\nActon is a small residential community located in the Sierra Pelona Mountains. It is off the Antelope Valley Freeway (Highway 14) near Palmdale. Acton is roughly 20 miles (32 km) northeast of the San Fernando Valley and 47 miles (76 km) north of downtown Los Angeles. The town has a rural western theme which can be seen in its homes, commercial buildings, and historical buildings (some of which date back to the late 1800s). The homes in the mountains around Acton have views of the valley below. In the valley are ranch style homes, often with equestrian facilities. While Acton is not a part of the Antelope Valley, it is grouped together with the Valley in the General Plan. Acton has a Metrolink commuter rail station on its border with Palmdale that is themed in an \"old western\" style and has been seen in various movies and commercials.", "updatedAt": "2020-05-26T18:48:04.474Z" }, { "ACL": null, "borough": "California", "createdAt": "2020-05-26T18:48:18.916Z", "geoPosition": { "latitude": 34.15333333, "longitude": -118.76166667 }, "id": "JRxllB8CDz", "name": "Agoura Hills", "summary": "Agoura Hills ( (listen)) is a city in Los Angeles County, California. Its population was 20,330 at the 2010 census and an estimated 20,472 in 2018. It is in the eastern Conejo Valley between the Simi Hills and the Santa Monica Mountains. The city is in western Los Angeles County and is bordered to the north by Ventura County. It is 35 miles (56 km) northwest of Downtown Los Angeles and less than 10 miles (16 km) west of the Los Angeles city limits at Woodland Hills. Agoura Hills and unincorporated Agoura sit next to Calabasas, Oak Park, and Westlake Village.\n\n", "updatedAt": "2020-05-26T18:48:18.916Z" }, { "ACL": null, "borough": "California", "createdAt": "2020-05-26T18:48:32.568Z", "geoPosition": { "latitude": 34.49638889, "longitude": -118.32555556 }, "id": "ouP1HD6tOC", "name": "Agua Dulce", "summary": "Agua Dulce (Spanish for \"sweet water\") is a census-designated place in Los Angeles County, California, United States. It lies at an elevation of 2,526 feet (770 m), northeast of Santa Clarita. The community had a population of 3,342 at the 2010 census and covers a geographic area of about 23 square miles (59 km2). The ZIP code is 91390, and the area code is 661.", "updatedAt": "2020-05-26T18:48:32.568Z" } ] } } }