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 96a4d71 commit 08f0952Copy full SHA for 08f0952
packages/graphql/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