Currently, generated OpenAPI descriptors for EntityUpdate<T> only include entity attributes. They should also include to-one and to-many relationships with the corresponding target entity ID descriptors. Of course we can't simply use a "ref" to the T entity here, as on update we only take an id (for to-one) or arrays of IDs (for to-many).
Currently, generated OpenAPI descriptors for
EntityUpdate<T>
only include entity attributes. They should also include to-one and to-many relationships with the corresponding target entity ID descriptors. Of course we can't simply use a "ref" to the T entity here, as on update we only take an id (for to-one) or arrays of IDs (for to-many).