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 83bc9ca commit 3c4086eCopy full SHA for 3c4086e
packages/graphql/lib/schema-builder/collections/field-directive.collection.ts
@@ -8,7 +8,9 @@ export class FieldDirectiveCollection extends MetadataListByNameCollection<Prope
8
9
add(value: PropertyDirectiveMetadata) {
10
const combinationKey = `${value.sdl}${value.fieldName}`;
11
- if (this.uniqueCombinations.has(combinationKey)) return;
+ if (this.uniqueCombinations.has(combinationKey)) {
12
+ return;
13
+ }
14
15
super.add(value, value.fieldName);
16
0 commit comments