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