Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If I'm using Freebase Suggest ( http://wiki.freebase.com/wiki/Freebase_Suggest ) and I have one field that selects either Country or State, how do I then have another field "City" filter to display only cities in that Country or State?

Also, if someone selected as their State "New York" ("/en/new_york"), how would I query to find out the "Country" is "United States of America"?

share|improve this question

1 Answer

Unfortunately, this isn't as easy as you'd hope. You can look at the /location/location/contained_by property of the city and see if /en/united_states (or whatever you're looking for) is included in there. However, this won't give you all the answers you're hoping for - for example, if you look at /en/new_york you'll see that it's contained by /en/new_york_state, but there's no direct link to /en/united_states.

You can look at /en/new_york_state and find that's contained by /en/united_states, but there's no easy way to do that kind of "transitive" search in Suggest.

The only thing you can do is to use the "included" MQL extension, but that relies on correct geodata being present in Freebase.

With regards to New York (State) being part of the United States, just look at the /location/administrative_division/country.

Hope this helps!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.