We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make sure domain objects are consistently referencing other domain objects across the code base. For example, either go with:
export class Workflow { .... @AutoMap() bpiAccountId: string; @AutoMap(() => BpiAccount) bpiAccount: BpiAccount; .... }
or with:
export class Workflow { .... @AutoMap(() => BpiAccount) bpiAccount: BpiAccount; .... }
Second option is better if it works with Prisma as it reduces code duplication and room for err. Validate and implement
The text was updated successfully, but these errors were encountered:
Ybittan
No branches or pull requests
Overview
Make sure domain objects are consistently referencing other domain objects across the code base. For example, either go with:
or with:
Second option is better if it works with Prisma as it reduces code duplication and room for err. Validate and implement
The text was updated successfully, but these errors were encountered: