forked from graphql-compose/graphql-compose-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
32 lines (31 loc) · 770 Bytes
/
index.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
import schema from './schema';
export default {
uri: '/elasticsearch',
schema,
title: 'Elasticsearch REST API wrapper',
description:
'This schema provides full API available in the <a href="https://github.com/elastic/elasticsearch-js" target="_blank">official elasticsearch module</a>.',
github: 'https://github.com/nodkz/graphql-compose-examples/tree/master/examples/elasticsearch',
queries: [
{
title: 'Elastic search API 7.7',
query: `
query {
elastic77(host: "http://user:[email protected]:9200") {
search(q: "JavaScript")
}
}
`,
},
{
title: 'Elastic search API 5.6',
query: `
query {
elastic56(host: "http://user:[email protected]:9200") {
search(q: "JavaScript")
}
}
`,
},
],
};