District
type District {
id: ID!
cityId: String!
countryId: String!
latitude: String
longitude: String
name: String!
order: Float
stateId: String!
}
Fields
ID indicating which city the district belongs to.
ID indicating which country the district belongs to.
latitude
StringIndicates the latitude of the city.
longitude
StringIndicates the longitude of the city.
District's name.
order
FloatSpecifies the order of districts.
ID indicating which state the district belongs to.