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 f8bb3f8 commit f5ce2d2Copy full SHA for f5ce2d2
packages/plugins/other/visitor-plugin-common/src/base-types-visitor.ts
@@ -466,7 +466,7 @@ export class BaseTypesVisitor<
466
InputObjectTypeDefinition(node: InputObjectTypeDefinitionNode): string {
467
if (this.config.onlyEnums) return '';
468
469
- // Why the heck is directive.name a string and not { value: string } at runtime ?!
+ // Why the heck is node.name a string and not { value: string } at runtime ?!
470
if (isOneOfInputObjectType(this._schema.getType(node.name as unknown as string))) {
471
return this.getInputObjectOneOfDeclarationBlock(node).string;
472
}
0 commit comments