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.
2 parents 2c8d565 + ba401e1 commit fa4c8e3Copy full SHA for fa4c8e3
src/validation/rules/UniqueFragmentNames.js
@@ -13,7 +13,7 @@ import { GraphQLError } from '../../error';
13
14
15
export function duplicateFragmentNameMessage(fragName: string): string {
16
- return `There can only be one fragment named "${fragName}".`;
+ return `There can be only one fragment named "${fragName}".`;
17
}
18
19
/**
src/validation/rules/UniqueOperationNames.js
export function duplicateOperationNameMessage(operationName: string): string {
- return `There can only be one operation named "${operationName}".`;
+ return `There can be only one operation named "${operationName}".`;
0 commit comments