Stringify GraphQL introspection errors
This commit is contained in:
Родитель
59e2344584
Коммит
f5fe060cce
|
@ -40,7 +40,7 @@ export async function introspectServer(url: string, headerStrings: string[]): Pr
|
|||
}
|
||||
|
||||
if (result.errors) {
|
||||
return panic(`Errors in introspection query result: ${result.errors}`);
|
||||
return panic(`Errors in introspection query result: ${JSON.stringify(result.errors)}`);
|
||||
}
|
||||
|
||||
const schemaData = result;
|
||||
|
|
Загрузка…
Ссылка в новой задаче