Query to get Metropolitan areas available
To get the available Metropolitan areas in the API we can use MSA
field and order it by alphabetical order in ascending order.
query priceFeed {
MSA(where: {}, order_by: {MSA_NAME: asc}) {
MSA_NAME
}
}
If we want to get the same list and an indicator if this is a Case Shiller Metro 10 we can modify the query in the following way:
query priceFeed {
MSA(where: {}) {
MSA_NAME
CS_10
}
}
Updated 15 days ago