-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmake-graphql-request.py
103 lines (90 loc) · 2.63 KB
/
make-graphql-request.py
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
# 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.
#
# ANVIL_API_KEY=<yourAPIKey> node examples/make-graphql-request.js
import json
import os
from python_anvil.api import Anvil
# Get your API key from your Anvil organization settings.
# See https://www.useanvil.com/docs/api/getting-started#api-key for more details.
API_KEY = os.environ.get("ANVIL_API_KEY")
def call_current_user_query(anvil: Anvil) -> dict:
"""
Gets the user data attached to the current API key.
:param anvil:
:type anvil: Anvil
:return:
"""
# See the reference docs for examples of all queries and mutations:
# https://www.useanvil.com/docs/api/graphql/reference/
user_query = """
query CurrentUser {
currentUser {
eid
name
organizations {
eid
slug
name
casts {
eid
name
}
welds {
eid
name
}
}
}
}
"""
res = anvil.query(query=user_query, variables=None)
return res["data"]["currentUser"]
def call_weld_query(anvil: Anvil, weld_eid: str):
"""
Call the weld query.
The weld() query is an example of a query that takes variables.
:param anvil:
:type anvil: Anvil
:param weld_eid:
:type weld_eid: str
:return:
"""
weld_query = """
query WeldQuery (
$eid: String,
) {
weld (
eid: $eid,
) {
eid
name
forges {
eid
slug
name
}
}
}
"""
variables = {"eid": weld_eid}
res = anvil.query(query=weld_query, variables=variables)
return res["data"]["weld"]
def call_queries():
anvil = Anvil(api_key=API_KEY)
current_user = call_current_user_query(anvil)
first_weld = current_user["organizations"][0]["welds"][0]
weld_data = call_weld_query(anvil, weld_eid=first_weld["eid"])
print("currentUser: ", json.dumps(current_user))
print("First weld datails: ", json.dumps(weld_data))
if __name__ == "__main__":
call_queries()