cyclosproject / ng-openapi-gen

An OpenAPI 3.0 codegen for Angular
MIT License
397 stars 132 forks source link

Type resolution fails for allOf references #1

Closed luisfpg closed 5 years ago

luisfpg commented 5 years ago

For example, the following model generates the other property with empty type:

MyObject:
  type: object
  properties:
    other:
      allOf:
        - $ref: '#/components/schemas/OtherObject'