특정 국가의 모든 도시를 반환하고 싶은 쿼리가 있습니다.도시 별 관련 정렬을위한 freebase API
크기가 100 인 한도를 피하기 위해 크기 나 중요도 순으로 정렬하는 것을 제외하고는 괜찮습니다. 처음 100 개 도시가 가장 먼저 선정 할 가능성이 큰 도시를 갖고 싶습니다. (인구, 또는?)
이 작동하지만 모든 포함 된 요소 계산하는 것처럼 매우 느립니다[{
"/location/country/iso3166_1_alpha2": "US",
"/location/location/contains":[
"id" : null,
"name" : null,
"/location/statistical_region/population" : { "number" : null, "date" : null }
"type" : "/location/citytown"
]
}]
:
[{
"/location/country/iso3166_1_alpha2": "US",
"/location/location/contains":[
"id" : null,
"name" : null,
"type" : "/location/citytown",
"/location/location/contains":{"return": "count"}
"sort": "-/location/location/contains.count"
]
}]
내가 /location/statistical_region/population
하지만 많은 행운없이 포함했는데, 어떤 아이디어?