We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42a3f00 commit e7a18c4Copy full SHA for e7a18c4
lib/schema-builder/factories/enum-definition.factory.ts
@@ -4,7 +4,7 @@ import { GraphQLEnumType } from 'graphql';
4
import { EnumMetadata } from '../metadata';
5
6
export const mapToUppercase = (value: string): string =>
7
- upperCase(value).replace(' ', '_');
+ upperCase(value).replaceAll(' ', '_');
8
9
export interface EnumDefinition {
10
enumRef: object;
0 commit comments