-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschema.gql
401 lines (357 loc) · 7.47 KB
/
schema.gql
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
# -----------------------------------------------
# !!! THIS FILE WAS GENERATED BY TYPE-GRAPHQL !!!
# !!! DO NOT MODIFY THIS FILE BY YOURSELF !!!
# -----------------------------------------------
input AbiDto {
id: ID
name: String
isPublic: Boolean
abi: String
}
type AbiEntity {
id: ID!
name: String!
abi: String!
isPublic: Boolean!
abiEvents: [AbiEventEntity!]!
}
input AbiEventDto {
id: ID
title: String
isPublic: Boolean
}
type AbiEventEntity {
id: ID!
title: String!
name: String!
topic: String!
events: [EventEntity!]!
abi: AbiEntity!
abiId: Float!
abiEventInputs: [AbiEventInputEntity!]!
isPublic: Boolean!
}
input AbiEventInputDto {
id: ID
title: String
metaType: String
}
type AbiEventInputEntity {
id: ID!
title: String!
name: String!
type: String!
metaType: String
abiEvent: AbiEventEntity!
abiEventId: Float!
}
input AbiEventsQuery {
skip: Float
take: Float
abiId: Float
}
type AbiEventsQueryResponse {
totalCount: Float!
skip: Float
take: Float
abiEvents: [AbiEventEntity!]!
}
input AbisQuery {
skip: Float
take: Float
abiId: Float
}
type AbisQueryResponse {
totalCount: Float!
skip: Float
take: Float
abis: [AbiEntity!]!
}
input AppDto {
id: ID
name: String = ""
}
type AppEntity {
id: ID!
name: String!
}
input BlockJobsQuery {
skip: Float
take: Float
chainId: Float
state: String
}
input ContractDto {
id: ID
name: String
address: String
isPublic: Boolean
networkId: Float
abi: AbiDto
}
type ContractEntity {
id: ID!
owner: UserEntity!
ownerId: Float!
name: String!
abi: AbiEntity!
abiId: Float!
isPublic: Boolean!
address: String!
networkId: Float!
createdAt: Date!
updatedAt: Date!
deletedAt: Date
}
input ContractsQuery {
skip: Float
take: Float
ownerId: Float
address: String
networkId: Float
name: String
hasAbiEvents: Boolean
}
type ContractsQueryResponse {
totalCount: Float!
skip: Float
take: Float
contracts: [ContractEntity!]!
}
"""Date custom scalar type"""
scalar Date
type EtherscanAbiEntity {
status: String!
message: String!
result: String!
}
input EventDto {
id: ID
app: AppDto
title: String
scope: Float
runCount: Float
abiEventId: Float
contractId: Float
networkId: Float
isPublic: Boolean
parentId: Float
deletedAt: Date
webhookUrl: String
webhookBody: String
color: String
sendEmail: Boolean
callWebhook: Boolean
matchers: [MatcherDto!]
webhookHeaders: [WebhookHeaderDto!]
}
type EventEntity {
id: ID!
user: UserEntity!
scope: Float!
abiEvent: AbiEventEntity
abiEventId: Float
app: AppEntity
contract: ContractEntity
contractId: Float
title: String!
isPublic: Boolean!
parent: EventEntity
parentId: Float
matchers: [MatcherEntity!]!
runCount: Float!
createdAt: Date!
updatedAt: Date!
deletedAt: Date
webhookUrl: String
webhookBody: String
webhookHeaders: [WebhookHeaderEntity!]
color: String!
sendEmail: Boolean!
callWebhook: Boolean!
networkId: Float!
}
type EventLogEntity {
id: ID!
event: EventEntity!
eventId: Float!
}
input EventsQuery {
skip: Float
take: Float
userId: Float
isPublic: Boolean
searchTerms: String
}
type EventsQueryResponse {
totalCount: Float!
skip: Float
take: Float
events: [EventEntity!]!
}
"""Interval object scalar type"""
scalar Interval
type JobEntity {
id: ID!
name: String!
priority: Float!
data: Json!
state: String!
retrylimit: Float!
retrycount: Float!
retrydelay: Float!
retrybackoff: Boolean!
startafter: Date!
startedon: Date
singletonkey: String
singletonon: Date
expirein: Interval!
createdon: Date!
completedon: Date
}
type JobsQueryResponse {
totalCount: Float!
skip: Float
take: Float
jobs: [JobEntity!]!
}
type JobSummary {
createdCount: Float!
activeCount: Float!
completedCount: Float!
failedCount: Float!
}
"""Json object scalar type"""
scalar Json
input MatcherDto {
id: ID
eventId: Float
abiEventInputId: Float
order: Float
source: String
operator: Float
operand: String = ""
}
type MatcherEntity {
id: ID!
event: EventEntity!
eventId: Float!
order: Float!
source: String!
abiEventInput: AbiEventInputEntity!
abiEventInputId: Float
operator: Float!
operand: String
createdAt: Date!
updatedAt: Date!
}
type MetaDataTypeEntity {
metaDataType: ID!
title: String!
}
type Mutation {
createApp(app: AppDto!): AppEntity!
updateApp(app: AppDto!): AppEntity!
destroyApp(appId: Float!): AppEntity!
disableEventEmail(disableEmailKey: String!): Float!
createEvent(event: EventDto!): EventEntity!
updateEvent(event: EventDto!): EventEntity!
deleteEvent(eventId: Float!): EventEntity!
createWebhookHeader(webhookHeader: WebhookHeaderDto!): WebhookHeaderEntity!
updateWebhookHeader(webhookHeader: WebhookHeaderDto!): WebhookHeaderEntity!
destroyWebhookHeader(webhookHeaderId: Float!): Boolean!
createMatcher(matcher: MatcherDto!): MatcherEntity!
updateMatcher(matcher: MatcherDto!): MatcherEntity!
destroyMatcher(matcherId: Float!): Boolean!
createAbi(abi: AbiDto!): AbiEntity!
updateAbi(abi: AbiDto!): AbiEntity!
destroyAbi(id: Float!): AbiEntity!
updateAbiEventInput(abiEventInput: AbiEventInputDto!): AbiEventInputEntity!
updateAbiEvent(abiEvent: AbiEventDto!): AbiEventEntity!
createContract(contract: ContractDto!): ContractEntity!
updateContract(contract: ContractDto!): ContractEntity!
destroyContract(id: Float!): ContractEntity!
updateUser(user: UserDto!): UserEntity!
resendConfirmation: UserEntity!
}
type NetworkEntity {
id: ID!
name: String!
}
type OneTimeKeyValidEntity {
valid: Boolean!
expiresAt: Date
}
input PagedQuery {
skip: Float
take: Float
}
type PagedQueryResponse {
totalCount: Float!
skip: Float
take: Float
}
type Query {
oneTimeKeyValid(oneTimeKey: String!): OneTimeKeyValidEntity!
jwt(password: String!, email: String!): String!
Authorization(password: String!, email: String!): String!
app(id: Float!): AppEntity
apps: [AppEntity!]!
event(id: Float!): EventEntity
events(eventsQuery: EventsQuery): EventsQueryResponse!
blockJobs(blockJobsQuery: BlockJobsQuery!): JobsQueryResponse!
jobSummary: JobSummary!
source(source: String!): SourceEntity!
sources: [SourceEntity!]!
metaDataType(metaDataType: String!): MetaDataTypeEntity!
metaDataTypes: [MetaDataTypeEntity!]!
abi(id: Float!): AbiEntity!
abis(abisQuery: AbisQuery): AbisQueryResponse!
etherscanAbi(networkId: Float, address: String!): EtherscanAbiEntity!
abiEventInputs(abiEventId: Float, name: String): [AbiEventInputEntity!]!
abiEventInput(id: Float!): AbiEventInputEntity!
abiEvent(id: Float!): AbiEventEntity!
abiEvents(abiEventsQuery: AbiEventsQuery): AbiEventsQueryResponse!
contract(id: Float!): ContractEntity!
contracts(contractsQuery: ContractsQuery): ContractsQueryResponse!
network(id: Float!): NetworkEntity!
networks: [NetworkEntity!]!
currentUser: UserEntity
}
type SourceEntity {
source: ID!
title: String!
dataType: String!
metaDataType: String
}
input UserDto {
name: String
etherscan_api_key: String
}
type UserEntity {
id: ID!
name: String!
email: String!
confirmedAt: Date
etherscan_api_key: String
isAdmin: Boolean!
isPaid: Boolean!
}
input WebhookHeaderDto {
id: ID
key: String
value: String
eventId: Float
}
type WebhookHeaderEntity {
id: ID!
key: String!
value: String!
event: EventEntity!
eventId: Float!
}
type WorkLogEntity {
id: ID!
chainId: Float!
lastCompletedBlockNumber: Float!
}