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