-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayground.graphql
184 lines (169 loc) · 3.73 KB
/
playground.graphql
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
fragment fieldFields on Field {
name
kind
modifiers
}
fragment lambdaFields on Lambda {
id
name
serviceId
runtime {
id
}
code
input {
...fieldFields
}
outputKind
outputModifiers
kinds {
name
fields {
...fieldFields
}
}
}
mutation createLambda {
createLambda(
input: {
id: "common+age"
name: "age"
serviceId: "common"
runtimeId: "Q+JavaScript"
code: "const dob = new Date(input.person.dob); const dobYear = dob.getFullYear(); const now = new Date();const nowYear = now.getFullYear();const age = nowYear - dobYear;console.log(input, '=> age:', age);return age;"
input: [{ name: "person", kind: "Person", modifiers: [NONULL] }]
outputKind: "Int"
outputModifiers: [NONULL]
kinds: [
{
name: "Person"
fields: [
{ name: "name", kind: "String", modifiers: [NONULL] }
{ name: "dob", kind: "Date", modifiers: [NONULL] }
]
}
]
}
) {
...lambdaFields
}
}
mutation createLambda2 {
createLambda(
input: {
id: "my_workspace+projectDob"
name: "projectDob"
serviceId: "my_workspace"
runtimeId: "Q+JavaScript"
code: "output = input.person.dob;"
input: [{ name: "person", kind: "PersonInput", modifiers: [NONULL] }]
outputKind: "Date"
outputModifiers: [NONULL]
kinds: [
{
name: "PersonInput"
fields: [
{ name: "name", kind: "String", modifiers: [NONULL] }
{ name: "dob", kind: "Date", modifiers: [NONULL] }
]
}
]
}
) {
...lambdaFields
}
}
mutation createLambda3 {
createLambda(
input: {
id: "my_workspace+constructPerson"
name: "constructPerson"
serviceId: "my_workspace"
runtimeId: "Q+JavaScript"
code: "return { name: input.name, dob: input.dob }"
input: [{ name: "name", kind: "String", modifiers: [NONULL] }, { name: "dob", kind: "Date", modifiers: [NONULL] }]
outputKind: "Person"
outputModifiers: [NONULL]
kinds: [
{
name: "Person"
fields: [
{ name: "name", kind: "String", modifiers: [NONULL] }
{ name: "dob", kind: "Date", modifiers: [NONULL] }
]
}
]
}
) {
...lambdaFields
}
}
query getLambda {
getLambda(id: "common+age") {
...lambdaFields
}
}
query listLambdas {
listLambdas(serviceId: "common") {
...lambdaFields
}
}
query listLambdas2 {
listLambdas(serviceId: "my_workspace") {
...lambdaFields
}
}
query listRuntimes {
listRuntimes {
id
host
language
}
}
mutation deleteLambda {
deleteLambda(id: "common+age")
}
mutation deleteService {
deleteService(id: "common")
}
mutation deleteService2 {
deleteService(id: "my_workspace")
}
query listServices {
listServices
}
query listPolyLambdas {
listLambdas(serviceId: "polyglot") {
...lambdaFields
}
}
mutation createHaskellLambda {
createLambda(
input: {
serviceId: "polyglot"
id: "hello-haskell"
name: "helloHaskell"
runtimeId: "Q+Haskell"
code: "import System.Environment\nmain = do\n input <- getArgs\n putStrLn $ head input"
input: [{ name: "name", kind: "String", modifiers: [NONULL] }]
outputKind: "STRING"
}
) {
...lambdaFields
}
}
mutation createPythonLambda {
createLambda(
input: {
serviceId: "polyglot"
id: "hello-pyhon"
name: "helloPython"
runtimeId: "Q+Python"
code: "import sys\nimport json\n\ninput = json.loads(sys.argv[1])\n\nprint(\"Hello, \" + input[\"name\"])"
input: [{ name: "name", kind: "String", modifiers: [NONULL] }]
outputKind: "STRING"
}
) {
...lambdaFields
}
}