Skip to main content

District

type District {
id: ID!
cityId: String!
countryId: String!
latitude: String
longitude: String
name: String!
order: Float
stateId: String!
}

Fields

idID!required
cityIdString!required

ID indicating which city the district belongs to.

countryIdString!required

ID indicating which country the district belongs to.

latitudeString

Indicates the latitude of the city.

longitudeString

Indicates the longitude of the city.

nameString!required

District's name.

orderFloat

Specifies the order of districts.

stateIdString!required

ID indicating which state the district belongs to.