This repository has been archived by the owner on Jan 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
graphql.js
executable file
·135 lines (117 loc) · 4.51 KB
/
graphql.js
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
const gql = require('graphql-tag');
const fs = require('fs');
function processSources(schemaSources, destination) {
console.log(`Generating GraphQL schema data from source files:
${schemaSources.map(path => ` * ${path}`).join('\n')}`);
const schema = schemaSources.map(path => fs.readFileSync(path, 'utf-8')).join(' ')
// Loop over the schema definitions, extracting interesting data
const jsonSchema = gql(schema).definitions.map(def => {
const { name, description, fields } = def;
if (def.kind !== 'ObjectTypeDefinition') return null
// TODO: Add support for Enum types
return {
name: name.value,
hideChildren: (name.value != "Subscription" && name.value != "Query"),
description: description ? description.value : '',
fields: fields.map(field => {
const { name, type, description, arguments, defaultValue } = field;
//console.log("MAMA", JSON.stringify(field))
let typeDef = getFieldType(type)
return {
name: name.value,
type: typeDef,
description: description ? description.value : '',
arguments: arguments.map(arg => {
const { name, type, description, defaultValue } = arg;
let typeDef = getFieldType(type, defaultValue)
return {
name: name.value,
type: typeDef,
description: description ? description.value : '',
}
})
}
})
}
}).filter(x => !!x);
fs.writeFileSync(destination, JSON.stringify(jsonSchema, null, 2));
}
// Recursively parses the field name
function getFieldType(field, defaultValue) {
const { type, kind, name } = field;
//console.log("BVOOOOOOOOOOOOOO", defaultValue);
if (field.kind === 'NonNullType') {
if (field.type.kind === 'ListType') {
if (field.type.type.kind === 'NonNullType') {
if (field.type.type.type.kind === 'NamedType') {
return {isList: true, reqList: true, reqType: true, name: field.type.type.type.name.value}
} else {
throw("unsupported path type:", field.type.type.type.kind)
}
} else if (field.type.type.kind === 'NamedType') {
return {isList: true, reqList: true, name: field.type.type.name.value}
} else {
throw("unsupported path type:", field.type.type.kind)
}
} else if (field.type.kind === 'NamedType') {
return {reqType: true, name: field.type.name.value}
} else {
throw("unsupported path type:", field.type.kind)
}
} else if (field.kind === 'ListType') {
if (field.type.kind === 'NonNullType') {
if (field.type.type.kind === 'NamedType') {
return {isList: true, reqType: true, name: field.type.type.name.value}
} else {
throw("unsupported path type:", field.type.type.kind)
}
} else if (field.type.kind === 'NamedType') {
return {isList: true, name: field.type.name.value}
} else {
throw("unsupported path type:", field.type.kind)
}
} else if (field.kind === 'NamedType') {
const out = {name: field.name.value}
if (defaultValue !== undefined) {
out.default = formatDefaultValue(defaultValue)
}
return out
} else {
throw("unsupported path type:", field.kind)
}
}
function formatDefaultValue(def) {
switch (def.kind) {
case 'IntValue':
return def.value
case 'StringValue':
return JSON.stringify(def.value)
case 'BooleanValue':
return def.value
case 'EnumValue':
return def.value
default:
throw("unsupported format value:", def.kind)
}
}
processSources([
'../dfuse-ethereum/dgraphql/schema/subscription.graphql',
'../dfuse-ethereum/dgraphql/schema/subscription_alpha.graphql',
'../dfuse-ethereum/dgraphql/schema/query.graphql',
// '../dfuse-ethereum/dgraphql/schema/query_alpha.graphql',
'../dfuse-ethereum/dgraphql/schema/transactions.graphql',
'../dfuse-ethereum/dgraphql/schema/block.graphql',
'../dfuse-ethereum/dgraphql/schema/trx_state_tracker.graphql',
], 'data/eth/graphql.json')
processSources([
'../dfuse-eosio/dgraphql/schema/subscription.graphql',
'../dfuse-eosio/dgraphql/schema/query.graphql',
'../dfuse-eosio/dgraphql/schema/query_alpha.graphql',
'../dfuse-eosio/dgraphql/schema/block.graphql',
'../dfuse-eosio/dgraphql/schema/search_transaction.graphql',
'../dfuse-eosio/dgraphql/schema/accounthist.graphql',
'../dfuse-eosio/dgraphql/schema/transactions.graphql',
'../dfuse-eosio/dgraphql/schema/blockmeta.graphql',
'../dfuse-eosio/dgraphql/schema/tokenmeta.graphql',
], 'data/eos/graphql.json')
console.log('Done!')