City
type City {
id: ID!
cityCode: String
countryId: String!
latitude: String
longitude: String
name: String!
order: Float
stateId: String!
}
Fields
cityCode
StringThe two-letter city code corresponding to the city.
ID indicating which country the city belongs to.
latitude
StringIndicates the latitude of the city.
longitude
StringIndicates the longitude of the city.
City's name.
order
FloatSpecifies the order of cities.
ID indicating which state the city belongs to.