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.
latitudeStringIndicates the latitude of the city.
longitudeStringIndicates the longitude of the city.
District's name.
orderFloatSpecifies the order of districts.
ID indicating which state the district belongs to.