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 d7c85a4 commit 3f2dd27Copy full SHA for 3f2dd27
src/utilities/buildClientSchema.js
@@ -143,7 +143,7 @@ export function buildClientSchema(
143
const type = getType(typeRef);
144
invariant(
145
isInputType(type),
146
- 'Introspection must provide input type for arguments.',
+ 'Introspection must provide input type for arguments. ' + inspect(type),
147
);
148
return type;
149
}
@@ -154,7 +154,7 @@ export function buildClientSchema(
154
155
156
isOutputType(type),
157
- 'Introspection must provide output type for fields.',
+ 'Introspection must provide output type for fields. ' + inspect(type),
158
159
160
0 commit comments