-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathforge_submit.py
57 lines (55 loc) · 1.11 KB
/
forge_submit.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
DEFAULT_RESPONSE_QUERY = """
{
id
eid
payloadValue
currentStep
completedAt
createdAt
updatedAt
signer {
name
email
status
routingOrder
}
weldData {
id
eid
isTest
isComplete
agents
}
}
"""
FORGE_SUBMIT = """
mutation ForgeSubmit(
$forgeEid: String!,
$weldDataEid: String,
$submissionEid: String,
$payload: JSON!,
$currentStep: Int,
$complete: Boolean,
$isTest: Boolean,
$timezone: String,
$groupArrayId: String,
$groupArrayIndex: Int,
$errorType: String,
$webhookURL: String,
) {{
forgeSubmit (
forgeEid: $forgeEid,
weldDataEid: $weldDataEid,
submissionEid: $submissionEid,
payload: $payload,
currentStep: $currentStep,
complete: $complete,
isTest: $isTest,
timezone: $timezone,
groupArrayId: $groupArrayId,
groupArrayIndex: $groupArrayIndex,
errorType: $errorType,
webhookURL: $webhookURL
) {query}
}}
"""