-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmake-graphql-request.js
123 lines (111 loc) · 3.23 KB
/
make-graphql-request.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
// Example: Make an arbitrary GraphQL request to the Anvil API
//
// Feel free to copy and paste queries and mutations from the GraphQL reference
// docs into the functions in this script.
//
// * GraphQL guide: https://www.useanvil.com/docs/api/graphql
// * GraphQL ref docs: https://www.useanvil.com/docs/api/graphql/reference
// * Anvil Node.js client: https://github.com/anvilco/node-anvil
//
// This script is runnable as is, all you need to do is supply your own API key
// in the ANVIL_API_KEY environment variable.
//
// node examples/make-graphql-request.js
const fs = require('fs')
const path = require('path')
const Anvil = require('@anvilco/anvil')
const run = require('../lib/run')
// Get your API key from your Anvil organization settings.
// See https://www.useanvil.com/docs/api/getting-started#api-key for more details.
const apiKey = process.env.ANVIL_API_KEY
async function callQueries () {
const anvilClient = new Anvil({ apiKey })
const currentUser = await callCurrentUserQuery({ anvilClient })
console.log('currentUser:', JSON.stringify(currentUser, null, 2))
const firstWeld = currentUser.organizations[0].welds[0]
if (firstWeld) {
const weldFromQuery = await callWeldQuery({ anvilClient, weldEid: firstWeld.eid })
console.log('First weld details:', JSON.stringify(weldFromQuery, null, 2))
} else {
console.log('No welds found! Skipping the weld call')
}
}
// The currentUser query takes no variables
async function callCurrentUserQuery ({ anvilClient }) {
// See the reference docs for examples of all queries and mutations:
// https://www.useanvil.com/docs/api/graphql/reference/
//
// Queries and mutations both use this same syntax
const currentUserQuery = `
query CurrentUser {
currentUser {
eid
name
organizations {
eid
slug
name
casts {
eid
name
}
welds {
eid
name
}
}
}
}
`
const variables = {}
const { data, errors } = await anvilClient.requestGraphQL(
{
query: currentUserQuery,
variables,
},
{ dataType: 'json' }
)
if (errors) {
// Note: because of the nature of GraphQL, statusCode may be a 200 even when
// there are errors.
console.log(JSON.stringify(errors, null, 2))
throw new Error('There were errors fetching the current user')
}
return data.data.currentUser
}
// The weld() query is an example of a query that takes variables
async function callWeldQuery ({ anvilClient, weldEid }) {
const currentUserQuery = `
query WeldQuery (
$eid: String,
) {
weld (
eid: $eid,
) {
eid
name
forges {
eid
slug
name
}
}
}
`
const variables = { eid: weldEid }
const { data, errors } = await anvilClient.requestGraphQL(
{
query: currentUserQuery,
variables,
},
{ dataType: 'json' }
)
if (errors) {
// Note: because of the nature of GraphQL, statusCode may be a 200 even when
// there are errors.
console.log(JSON.stringify(errors, null, 2))
throw new Error('There were errors fetching the current user')
}
return data.data.weld
}
run(callQueries)