You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// lots of lines omitted...exportinterfaceDetailTypeResolver<TParent=any>{(parent: TParent,context: any,info: GraphQLResolveInfo): |Promise<>;// <--- notice empty return type and no Promise return type}
Debugger after evaluating const introspectResult = await getIntrospectResult();here shows no possibleTypes (empty array):
My question is what is the intended output or if this is a bug, what is the expected output?
The text was updated successfully, but these errors were encountered:
How is this library supposed to behave when there are no in possibleTypes, e.g. on an interface that extends nothing?
File
detail.graphql
File
output.d.ts
Debugger after evaluating
const introspectResult = await getIntrospectResult();
here shows no possibleTypes (empty array):My question is what is the intended output or if this is a bug, what is the expected output?
The text was updated successfully, but these errors were encountered: