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 3eb0b3b commit 330011cCopy full SHA for 330011c
packages/plugins/other/visitor-plugin-common/src/utils.ts
@@ -418,13 +418,6 @@ function isStringValueNode(node: any): node is StringValueNode {
418
return node && typeof node === 'object' && node.kind === Kind.STRING;
419
}
420
421
-// will be removed on next release because tools already has it
422
-export function getRootTypeNames(schema: GraphQLSchema): string[] {
423
- return [schema.getQueryType(), schema.getMutationType(), schema.getSubscriptionType()]
424
- .filter(t => t)
425
- .map(t => t.name);
426
-}
427
-
428
export function stripMapperTypeInterpolation(identifier: string): string {
429
return identifier.trim().replace(/<{.*}>/, '');
430
0 commit comments