-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathGraphQLIntrospection.ts
54 lines (42 loc) · 1.66 KB
/
GraphQLIntrospection.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import { exceptionToString } from "@glideapps/ts-necessities";
import fetch from "cross-fetch";
import { introspectionQuery } from "graphql";
import { panic } from "quicktype-core";
// https://github.com/apollographql/apollo-codegen/blob/master/src/downloadSchema.ts
const defaultHeaders: { [name: string]: string } = {
Accept: "application/json",
"Content-Type": "application/json"
};
const headerRegExp = /^([^:]+):\s*(.*)$/;
export async function introspectServer(url: string, method: string, headerStrings: string[]): Promise<string> {
const headers: { [name: string]: string } = {};
for (const name of Object.getOwnPropertyNames(defaultHeaders)) {
headers[name] = defaultHeaders[name];
}
for (const str of headerStrings) {
const matches = headerRegExp.exec(str);
if (matches === null) {
return panic(`Not a valid HTTP header: "${str}"`);
}
headers[matches[1]] = matches[2];
}
let result;
try {
const response = await fetch(url, {
method,
headers: headers,
body: JSON.stringify({ query: introspectionQuery })
});
result = await response.json();
} catch (error) {
return panic(`Error while fetching introspection query result: ${exceptionToString(error)}`);
}
if (result.errors) {
return panic(`Errors in introspection query result: ${JSON.stringify(result.errors)}`);
}
const schemaData = result;
if (!schemaData.data) {
return panic(`No introspection query result data found, server responded with: ${JSON.stringify(result)}`);
}
return JSON.stringify(schemaData, null, 2);
}