forked from graphql-compose/graphql-compose-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.ts
90 lines (84 loc) · 2.49 KB
/
schema.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
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
import elasticsearch from 'elasticsearch';
import { SchemaComposer } from 'graphql-compose';
import { ElasticApiParser } from 'graphql-compose-elasticsearch';
function checkHost(host): void {
if (host === 'http://user:[email protected]:9200') {
throw new Error(
"✋ 🛑 I don't have public elasticsearch instance for demo purposes. \n" +
'🚀 Demo will work if you provide public elasticsearch instance url \n' +
'🚀 in query argument `host: "http://user:[email protected]:9200"` \n'
);
}
}
const schemaComposer = new SchemaComposer();
schemaComposer.Query.setField('elastic77', {
description: 'Elastic v7.7',
type: schemaComposer.createObjectTC({
name: 'Elastic77',
fields: new ElasticApiParser({ apiVersion: '7.7', prefix: 'Elastic77' }).generateFieldMap(),
}),
args: {
host: {
type: 'String',
defaultValue: 'http://user:[email protected]:9200',
},
},
resolve: (src, args, context) => {
checkHost(args.host);
context.elasticClient = new elasticsearch.Client({
// eslint-disable-line no-param-reassign
host: args.host,
apiVersion: '7.7',
requestTimeout: 5000,
});
return {};
},
});
schemaComposer.Query.setField('elastic68', {
description: 'Elastic v6.8',
type: schemaComposer.createObjectTC({
name: 'Elastic60',
fields: new ElasticApiParser({ apiVersion: '6.8', prefix: 'Elastic68' }).generateFieldMap(),
}),
args: {
host: {
type: 'String',
defaultValue: 'http://user:[email protected]:9200',
},
},
resolve: (src, args, context) => {
checkHost(args.host);
context.elasticClient = new elasticsearch.Client({
// eslint-disable-line no-param-reassign
host: args.host,
apiVersion: '6.8',
requestTimeout: 5000,
});
return {};
},
});
schemaComposer.Query.setField('elastic56', {
description: 'Elastic v5.6',
type: schemaComposer.createObjectTC({
name: 'Elastic56',
fields: new ElasticApiParser({ apiVersion: '5.6', prefix: 'Elastic56' }).generateFieldMap(),
}),
args: {
host: {
type: 'String',
defaultValue: 'http://user:[email protected]:9200',
},
},
resolve: (src, args, context) => {
checkHost(args.host);
context.elasticClient = new elasticsearch.Client({
// eslint-disable-line no-param-reassign
host: args.host,
apiVersion: '5.6',
requestTimeout: 5000,
});
return {};
},
});
const graphqlSchema = schemaComposer.buildSchema();
export default graphqlSchema;