Skip to main content

City

type City {
id: ID!
cityCode: String
countryId: String!
latitude: String
longitude: String
name: String!
order: Float
stateId: String!
}

Fields

idID!required
cityCodeString

The two-letter city code corresponding to the city.

countryIdString!required

ID indicating which country the city belongs to.

latitudeString

Indicates the latitude of the city.

longitudeString

Indicates the longitude of the city.

nameString!required

City's name.

orderFloat

Specifies the order of cities.

stateIdString!required

ID indicating which state the city belongs to.