Skip to content

Commit

Permalink
refactor!: Removed renameZooTypes config option
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
Removed `renameZooTypes` config option
  • Loading branch information
unlight committed Feb 28, 2021
1 parent 789cfeb commit 71bfb68
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ generator nestgraphql {
output = "../src/@generated"
noAtomicOperations = false
combineScalarFilters = true
renameZooTypes = false
}

model User {
Expand Down
3 changes: 0 additions & 3 deletions src/helpers/create-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,5 @@ export function createConfig(data: Record<string, string | undefined>) {
reExportAll: ['true', '1', 'on'].includes(
(config.reExportAll as Nullable<string>) ?? 'false',
),
renameZooTypes: ['true', '1', 'on'].includes(
(config.renameZooTypes as Nullable<string>) ?? 'false',
),
};
}

0 comments on commit 71bfb68

Please sign in to comment.