GraphQL OBJECT
Area of the world you specify for a given product.
type Region {# Region code.id: String # Region name.name: String # Parent region.parent: Region # Child regions.children: [Region] # Child countries.countries: [Country] # Child states.states: [State] }