You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 5, 2025. It is now read-only.
Hi @benkroeger, thanks for replying back to my issue about relations in #14 .
So I just tried your suggestion of adding in the annotated relations, but I am now running into more issues. The create-${resource}.dto.ts is being appropriately updated with the new relations, however those relation entities are not being generated themselves. Here is an example:
import { ApiExtraModels } from '@nestjs/swagger';
import { CreateVenueDto } from '../../venue/dto/create-venue.dto';
export class CreateAssetVenueRelationInputDto {
create: CreateVenueDto;
}
@ApiExtraModels(CreateVenueDtoEntity, CreateAssetVenueRelationInputDtoEntity)
export class CreateAssetDto {
...otherProps
venue: CreateAssetVenueRelationInputDtoEntity;
}
In the above example, the CreateVenueDtoEntity and CreateAssetVenueRelationInputDtoEntity called in the @ApiExtraModels decorator do not exist/have not been generated, and neither has the CreateAssetVenueRelationInputDtoEntity found in the DTO definition.
Because of this, the TS compiler is failing. Any ideas what is going wrong here?
The text was updated successfully, but these errors were encountered:
this appears to be an issue with the entitySuffix property. Can you (temporarily) work without specifying it? Also, a PR fixing this is highly welcome
Why do you think entitySuffix is causing this behaviour? Can you show the part of the code that is to blame?
Would like to open a PR fixing it because ive run into the same problem, but as i am new to the codebase I dont even know where the problem is located.
Hi @benkroeger, thanks for replying back to my issue about relations in #14 .
So I just tried your suggestion of adding in the annotated relations, but I am now running into more issues. The
create-${resource}.dto.ts
is being appropriately updated with the new relations, however those relation entities are not being generated themselves. Here is an example:schema.prisma
create-asset.dto.ts
In the above example, the
CreateVenueDtoEntity
andCreateAssetVenueRelationInputDtoEntity
called in the@ApiExtraModels
decorator do not exist/have not been generated, and neither has theCreateAssetVenueRelationInputDtoEntity
found in the DTO definition.Because of this, the TS compiler is failing. Any ideas what is going wrong here?
The text was updated successfully, but these errors were encountered: