@berachain/graphql 0.1.0-alpha.2 → 0.1.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -5
- package/dist/bend/whisk.codegen.cjs +424 -0
- package/dist/bend/whisk.codegen.d.cts +1798 -0
- package/dist/bend/whisk.codegen.d.ts +1798 -0
- package/dist/bend/whisk.codegen.js +424 -0
- package/dist/chain/chain.codegen.cjs +12 -0
- package/dist/chain/chain.codegen.d.cts +376 -0
- package/dist/chain/chain.codegen.d.ts +376 -0
- package/dist/chain/chain.codegen.js +12 -0
- package/dist/dex/api.codegen.cjs +199 -0
- package/dist/dex/api.codegen.d.cts +3836 -0
- package/dist/dex/api.codegen.d.ts +3836 -0
- package/dist/dex/api.codegen.js +199 -0
- package/dist/dex/subgraph.codegen.cjs +88 -0
- package/dist/dex/subgraph.codegen.d.cts +5887 -0
- package/dist/dex/subgraph.codegen.d.ts +5887 -0
- package/dist/dex/subgraph.codegen.js +88 -0
- package/dist/governance/governance.codegen.cjs +116 -0
- package/dist/governance/governance.codegen.d.cts +1622 -0
- package/dist/governance/governance.codegen.d.ts +1622 -0
- package/dist/governance/governance.codegen.js +116 -0
- package/dist/honey/honey.codegen.cjs +104 -0
- package/dist/honey/honey.codegen.d.cts +936 -0
- package/dist/honey/honey.codegen.d.ts +936 -0
- package/dist/honey/honey.codegen.js +104 -0
- package/dist/pol/api.codegen.cjs +301 -0
- package/dist/pol/api.codegen.d.cts +3622 -0
- package/dist/pol/api.codegen.d.ts +3622 -0
- package/dist/pol/api.codegen.js +301 -0
- package/dist/pol/subgraph.codegen.cjs +197 -0
- package/dist/pol/subgraph.codegen.d.cts +4671 -0
- package/dist/pol/subgraph.codegen.d.ts +4671 -0
- package/dist/pol/subgraph.codegen.js +197 -0
- package/package.json +27 -23
|
@@ -0,0 +1,1622 @@
|
|
|
1
|
+
import * as _apollo_client from '@apollo/client';
|
|
2
|
+
|
|
3
|
+
type Maybe<T> = T | null;
|
|
4
|
+
type InputMaybe<T> = Maybe<T>;
|
|
5
|
+
type Exact<T extends {
|
|
6
|
+
[key: string]: unknown;
|
|
7
|
+
}> = {
|
|
8
|
+
[K in keyof T]: T[K];
|
|
9
|
+
};
|
|
10
|
+
type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
11
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
12
|
+
};
|
|
13
|
+
type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
14
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
15
|
+
};
|
|
16
|
+
type MakeEmpty<T extends {
|
|
17
|
+
[key: string]: unknown;
|
|
18
|
+
}, K extends keyof T> = {
|
|
19
|
+
[_ in K]?: never;
|
|
20
|
+
};
|
|
21
|
+
type Incremental<T> = T | {
|
|
22
|
+
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
23
|
+
};
|
|
24
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
25
|
+
type Scalars = {
|
|
26
|
+
ID: {
|
|
27
|
+
input: string;
|
|
28
|
+
output: string;
|
|
29
|
+
};
|
|
30
|
+
String: {
|
|
31
|
+
input: string;
|
|
32
|
+
output: string;
|
|
33
|
+
};
|
|
34
|
+
Boolean: {
|
|
35
|
+
input: boolean;
|
|
36
|
+
output: boolean;
|
|
37
|
+
};
|
|
38
|
+
Int: {
|
|
39
|
+
input: number;
|
|
40
|
+
output: number;
|
|
41
|
+
};
|
|
42
|
+
Float: {
|
|
43
|
+
input: number;
|
|
44
|
+
output: number;
|
|
45
|
+
};
|
|
46
|
+
BigDecimal: {
|
|
47
|
+
input: any;
|
|
48
|
+
output: any;
|
|
49
|
+
};
|
|
50
|
+
BigInt: {
|
|
51
|
+
input: any;
|
|
52
|
+
output: any;
|
|
53
|
+
};
|
|
54
|
+
Bytes: {
|
|
55
|
+
input: any;
|
|
56
|
+
output: any;
|
|
57
|
+
};
|
|
58
|
+
Int8: {
|
|
59
|
+
input: any;
|
|
60
|
+
output: any;
|
|
61
|
+
};
|
|
62
|
+
Timestamp: {
|
|
63
|
+
input: any;
|
|
64
|
+
output: any;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
declare enum Aggregation_Interval {
|
|
68
|
+
Day = "day",
|
|
69
|
+
Hour = "hour"
|
|
70
|
+
}
|
|
71
|
+
type BlockChangedFilter = {
|
|
72
|
+
number_gte: Scalars['Int']['input'];
|
|
73
|
+
};
|
|
74
|
+
type Block_Height = {
|
|
75
|
+
hash?: InputMaybe<Scalars['Bytes']['input']>;
|
|
76
|
+
number?: InputMaybe<Scalars['Int']['input']>;
|
|
77
|
+
number_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
78
|
+
};
|
|
79
|
+
type ExecutableCall = {
|
|
80
|
+
__typename?: 'ExecutableCall';
|
|
81
|
+
calldata: Scalars['Bytes']['output'];
|
|
82
|
+
id: Scalars['ID']['output'];
|
|
83
|
+
proposal: Proposal;
|
|
84
|
+
signature: Scalars['String']['output'];
|
|
85
|
+
target: Scalars['Bytes']['output'];
|
|
86
|
+
value: Scalars['BigInt']['output'];
|
|
87
|
+
};
|
|
88
|
+
type ExecutableCall_Filter = {
|
|
89
|
+
/** Filter for the block changed event. */
|
|
90
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
91
|
+
and?: InputMaybe<Array<InputMaybe<ExecutableCall_Filter>>>;
|
|
92
|
+
calldata?: InputMaybe<Scalars['Bytes']['input']>;
|
|
93
|
+
calldata_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
94
|
+
calldata_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
95
|
+
calldata_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
96
|
+
calldata_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
97
|
+
calldata_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
98
|
+
calldata_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
99
|
+
calldata_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
100
|
+
calldata_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
101
|
+
calldata_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
102
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
103
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
104
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
105
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
107
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
108
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
109
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
110
|
+
or?: InputMaybe<Array<InputMaybe<ExecutableCall_Filter>>>;
|
|
111
|
+
proposal?: InputMaybe<Scalars['String']['input']>;
|
|
112
|
+
proposal_?: InputMaybe<Proposal_Filter>;
|
|
113
|
+
proposal_contains?: InputMaybe<Scalars['String']['input']>;
|
|
114
|
+
proposal_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
115
|
+
proposal_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
116
|
+
proposal_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
117
|
+
proposal_gt?: InputMaybe<Scalars['String']['input']>;
|
|
118
|
+
proposal_gte?: InputMaybe<Scalars['String']['input']>;
|
|
119
|
+
proposal_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
120
|
+
proposal_lt?: InputMaybe<Scalars['String']['input']>;
|
|
121
|
+
proposal_lte?: InputMaybe<Scalars['String']['input']>;
|
|
122
|
+
proposal_not?: InputMaybe<Scalars['String']['input']>;
|
|
123
|
+
proposal_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
124
|
+
proposal_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
125
|
+
proposal_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
126
|
+
proposal_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
127
|
+
proposal_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
128
|
+
proposal_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
129
|
+
proposal_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
130
|
+
proposal_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
131
|
+
proposal_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
132
|
+
signature?: InputMaybe<Scalars['String']['input']>;
|
|
133
|
+
signature_contains?: InputMaybe<Scalars['String']['input']>;
|
|
134
|
+
signature_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
135
|
+
signature_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
136
|
+
signature_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
137
|
+
signature_gt?: InputMaybe<Scalars['String']['input']>;
|
|
138
|
+
signature_gte?: InputMaybe<Scalars['String']['input']>;
|
|
139
|
+
signature_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
140
|
+
signature_lt?: InputMaybe<Scalars['String']['input']>;
|
|
141
|
+
signature_lte?: InputMaybe<Scalars['String']['input']>;
|
|
142
|
+
signature_not?: InputMaybe<Scalars['String']['input']>;
|
|
143
|
+
signature_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
144
|
+
signature_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
145
|
+
signature_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
146
|
+
signature_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
147
|
+
signature_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
148
|
+
signature_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
149
|
+
signature_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
150
|
+
signature_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
151
|
+
signature_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
152
|
+
target?: InputMaybe<Scalars['Bytes']['input']>;
|
|
153
|
+
target_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
154
|
+
target_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
155
|
+
target_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
156
|
+
target_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
157
|
+
target_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
158
|
+
target_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
159
|
+
target_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
160
|
+
target_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
161
|
+
target_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
162
|
+
value?: InputMaybe<Scalars['BigInt']['input']>;
|
|
163
|
+
value_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
164
|
+
value_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
165
|
+
value_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
166
|
+
value_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
167
|
+
value_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
168
|
+
value_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
169
|
+
value_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
170
|
+
};
|
|
171
|
+
declare enum ExecutableCall_OrderBy {
|
|
172
|
+
Calldata = "calldata",
|
|
173
|
+
Id = "id",
|
|
174
|
+
Proposal = "proposal",
|
|
175
|
+
ProposalCancelTxHash = "proposal__cancelTxHash",
|
|
176
|
+
ProposalCanceledAt = "proposal__canceledAt",
|
|
177
|
+
ProposalCanceledAtBlock = "proposal__canceledAtBlock",
|
|
178
|
+
ProposalContentEncoding = "proposal__contentEncoding",
|
|
179
|
+
ProposalContentType = "proposal__contentType",
|
|
180
|
+
ProposalCreateTxHash = "proposal__createTxHash",
|
|
181
|
+
ProposalCreatedAt = "proposal__createdAt",
|
|
182
|
+
ProposalCreatedAtBlock = "proposal__createdAtBlock",
|
|
183
|
+
ProposalDescription = "proposal__description",
|
|
184
|
+
ProposalExecutableAtBlock = "proposal__executableAtBlock",
|
|
185
|
+
ProposalExecuteTxHash = "proposal__executeTxHash",
|
|
186
|
+
ProposalExecutedAt = "proposal__executedAt",
|
|
187
|
+
ProposalExecutedAtBlock = "proposal__executedAtBlock",
|
|
188
|
+
ProposalId = "proposal__id",
|
|
189
|
+
ProposalProposalId = "proposal__proposalId",
|
|
190
|
+
ProposalProposer = "proposal__proposer",
|
|
191
|
+
ProposalQueueEnd = "proposal__queueEnd",
|
|
192
|
+
ProposalQueueStart = "proposal__queueStart",
|
|
193
|
+
ProposalQueueStartBlock = "proposal__queueStartBlock",
|
|
194
|
+
ProposalQueueTxHash = "proposal__queueTxHash",
|
|
195
|
+
ProposalQuorum = "proposal__quorum",
|
|
196
|
+
ProposalStatus = "proposal__status",
|
|
197
|
+
ProposalSucceededAt = "proposal__succeededAt",
|
|
198
|
+
ProposalSucceededAtBlock = "proposal__succeededAtBlock",
|
|
199
|
+
ProposalSucceededVoteTxHash = "proposal__succeededVoteTxHash",
|
|
200
|
+
ProposalTitle = "proposal__title",
|
|
201
|
+
ProposalUnparsedDescription = "proposal__unparsedDescription",
|
|
202
|
+
ProposalUnverifiedForumLink = "proposal__unverifiedForumLink",
|
|
203
|
+
ProposalVoteEndAt = "proposal__voteEndAt",
|
|
204
|
+
ProposalVoteStartAt = "proposal__voteStartAt",
|
|
205
|
+
Signature = "signature",
|
|
206
|
+
Target = "target",
|
|
207
|
+
Value = "value"
|
|
208
|
+
}
|
|
209
|
+
/** Defines the order direction, either ascending or descending */
|
|
210
|
+
declare enum OrderDirection {
|
|
211
|
+
Asc = "asc",
|
|
212
|
+
Desc = "desc"
|
|
213
|
+
}
|
|
214
|
+
type PollResult = {
|
|
215
|
+
__typename?: 'PollResult';
|
|
216
|
+
abstain: Scalars['BigInt']['output'];
|
|
217
|
+
abstainPercentage: Scalars['String']['output'];
|
|
218
|
+
abstainVotersCount: Scalars['Int']['output'];
|
|
219
|
+
against: Scalars['BigInt']['output'];
|
|
220
|
+
againstPercentage: Scalars['String']['output'];
|
|
221
|
+
againstVotersCount: Scalars['Int']['output'];
|
|
222
|
+
for: Scalars['BigInt']['output'];
|
|
223
|
+
forPercentage: Scalars['String']['output'];
|
|
224
|
+
forVotersCount: Scalars['Int']['output'];
|
|
225
|
+
id: Scalars['ID']['output'];
|
|
226
|
+
total: Scalars['BigInt']['output'];
|
|
227
|
+
totalTowardsQuorum: Scalars['BigInt']['output'];
|
|
228
|
+
totalVotersCount: Scalars['Int']['output'];
|
|
229
|
+
};
|
|
230
|
+
type PollResult_Filter = {
|
|
231
|
+
/** Filter for the block changed event. */
|
|
232
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
233
|
+
abstain?: InputMaybe<Scalars['BigInt']['input']>;
|
|
234
|
+
abstainPercentage?: InputMaybe<Scalars['String']['input']>;
|
|
235
|
+
abstainPercentage_contains?: InputMaybe<Scalars['String']['input']>;
|
|
236
|
+
abstainPercentage_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
237
|
+
abstainPercentage_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
238
|
+
abstainPercentage_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
239
|
+
abstainPercentage_gt?: InputMaybe<Scalars['String']['input']>;
|
|
240
|
+
abstainPercentage_gte?: InputMaybe<Scalars['String']['input']>;
|
|
241
|
+
abstainPercentage_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
242
|
+
abstainPercentage_lt?: InputMaybe<Scalars['String']['input']>;
|
|
243
|
+
abstainPercentage_lte?: InputMaybe<Scalars['String']['input']>;
|
|
244
|
+
abstainPercentage_not?: InputMaybe<Scalars['String']['input']>;
|
|
245
|
+
abstainPercentage_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
246
|
+
abstainPercentage_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
247
|
+
abstainPercentage_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
248
|
+
abstainPercentage_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
249
|
+
abstainPercentage_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
250
|
+
abstainPercentage_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
251
|
+
abstainPercentage_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
252
|
+
abstainPercentage_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
253
|
+
abstainPercentage_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
254
|
+
abstainVotersCount?: InputMaybe<Scalars['Int']['input']>;
|
|
255
|
+
abstainVotersCount_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
256
|
+
abstainVotersCount_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
257
|
+
abstainVotersCount_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
258
|
+
abstainVotersCount_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
259
|
+
abstainVotersCount_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
260
|
+
abstainVotersCount_not?: InputMaybe<Scalars['Int']['input']>;
|
|
261
|
+
abstainVotersCount_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
262
|
+
abstain_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
263
|
+
abstain_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
264
|
+
abstain_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
265
|
+
abstain_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
266
|
+
abstain_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
267
|
+
abstain_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
268
|
+
abstain_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
269
|
+
against?: InputMaybe<Scalars['BigInt']['input']>;
|
|
270
|
+
againstPercentage?: InputMaybe<Scalars['String']['input']>;
|
|
271
|
+
againstPercentage_contains?: InputMaybe<Scalars['String']['input']>;
|
|
272
|
+
againstPercentage_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
273
|
+
againstPercentage_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
274
|
+
againstPercentage_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
275
|
+
againstPercentage_gt?: InputMaybe<Scalars['String']['input']>;
|
|
276
|
+
againstPercentage_gte?: InputMaybe<Scalars['String']['input']>;
|
|
277
|
+
againstPercentage_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
278
|
+
againstPercentage_lt?: InputMaybe<Scalars['String']['input']>;
|
|
279
|
+
againstPercentage_lte?: InputMaybe<Scalars['String']['input']>;
|
|
280
|
+
againstPercentage_not?: InputMaybe<Scalars['String']['input']>;
|
|
281
|
+
againstPercentage_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
282
|
+
againstPercentage_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
283
|
+
againstPercentage_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
284
|
+
againstPercentage_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
285
|
+
againstPercentage_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
286
|
+
againstPercentage_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
287
|
+
againstPercentage_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
288
|
+
againstPercentage_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
289
|
+
againstPercentage_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
290
|
+
againstVotersCount?: InputMaybe<Scalars['Int']['input']>;
|
|
291
|
+
againstVotersCount_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
292
|
+
againstVotersCount_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
293
|
+
againstVotersCount_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
294
|
+
againstVotersCount_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
295
|
+
againstVotersCount_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
296
|
+
againstVotersCount_not?: InputMaybe<Scalars['Int']['input']>;
|
|
297
|
+
againstVotersCount_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
298
|
+
against_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
299
|
+
against_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
300
|
+
against_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
301
|
+
against_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
302
|
+
against_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
303
|
+
against_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
304
|
+
against_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
305
|
+
and?: InputMaybe<Array<InputMaybe<PollResult_Filter>>>;
|
|
306
|
+
for?: InputMaybe<Scalars['BigInt']['input']>;
|
|
307
|
+
forPercentage?: InputMaybe<Scalars['String']['input']>;
|
|
308
|
+
forPercentage_contains?: InputMaybe<Scalars['String']['input']>;
|
|
309
|
+
forPercentage_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
310
|
+
forPercentage_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
311
|
+
forPercentage_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
312
|
+
forPercentage_gt?: InputMaybe<Scalars['String']['input']>;
|
|
313
|
+
forPercentage_gte?: InputMaybe<Scalars['String']['input']>;
|
|
314
|
+
forPercentage_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
315
|
+
forPercentage_lt?: InputMaybe<Scalars['String']['input']>;
|
|
316
|
+
forPercentage_lte?: InputMaybe<Scalars['String']['input']>;
|
|
317
|
+
forPercentage_not?: InputMaybe<Scalars['String']['input']>;
|
|
318
|
+
forPercentage_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
319
|
+
forPercentage_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
320
|
+
forPercentage_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
321
|
+
forPercentage_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
322
|
+
forPercentage_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
323
|
+
forPercentage_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
324
|
+
forPercentage_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
325
|
+
forPercentage_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
326
|
+
forPercentage_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
327
|
+
forVotersCount?: InputMaybe<Scalars['Int']['input']>;
|
|
328
|
+
forVotersCount_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
329
|
+
forVotersCount_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
330
|
+
forVotersCount_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
331
|
+
forVotersCount_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
332
|
+
forVotersCount_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
333
|
+
forVotersCount_not?: InputMaybe<Scalars['Int']['input']>;
|
|
334
|
+
forVotersCount_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
335
|
+
for_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
336
|
+
for_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
337
|
+
for_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
338
|
+
for_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
339
|
+
for_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
340
|
+
for_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
341
|
+
for_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
342
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
343
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
344
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
345
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
346
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
347
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
348
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
349
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
350
|
+
or?: InputMaybe<Array<InputMaybe<PollResult_Filter>>>;
|
|
351
|
+
total?: InputMaybe<Scalars['BigInt']['input']>;
|
|
352
|
+
totalTowardsQuorum?: InputMaybe<Scalars['BigInt']['input']>;
|
|
353
|
+
totalTowardsQuorum_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
354
|
+
totalTowardsQuorum_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
355
|
+
totalTowardsQuorum_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
356
|
+
totalTowardsQuorum_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
357
|
+
totalTowardsQuorum_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
358
|
+
totalTowardsQuorum_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
359
|
+
totalTowardsQuorum_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
360
|
+
totalVotersCount?: InputMaybe<Scalars['Int']['input']>;
|
|
361
|
+
totalVotersCount_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
362
|
+
totalVotersCount_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
363
|
+
totalVotersCount_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
364
|
+
totalVotersCount_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
365
|
+
totalVotersCount_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
366
|
+
totalVotersCount_not?: InputMaybe<Scalars['Int']['input']>;
|
|
367
|
+
totalVotersCount_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
368
|
+
total_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
369
|
+
total_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
370
|
+
total_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
371
|
+
total_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
372
|
+
total_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
373
|
+
total_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
374
|
+
total_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
375
|
+
};
|
|
376
|
+
declare enum PollResult_OrderBy {
|
|
377
|
+
Abstain = "abstain",
|
|
378
|
+
AbstainPercentage = "abstainPercentage",
|
|
379
|
+
AbstainVotersCount = "abstainVotersCount",
|
|
380
|
+
Against = "against",
|
|
381
|
+
AgainstPercentage = "againstPercentage",
|
|
382
|
+
AgainstVotersCount = "againstVotersCount",
|
|
383
|
+
For = "for",
|
|
384
|
+
ForPercentage = "forPercentage",
|
|
385
|
+
ForVotersCount = "forVotersCount",
|
|
386
|
+
Id = "id",
|
|
387
|
+
Total = "total",
|
|
388
|
+
TotalTowardsQuorum = "totalTowardsQuorum",
|
|
389
|
+
TotalVotersCount = "totalVotersCount"
|
|
390
|
+
}
|
|
391
|
+
type Proposal = {
|
|
392
|
+
__typename?: 'Proposal';
|
|
393
|
+
cancelTxHash?: Maybe<Scalars['Bytes']['output']>;
|
|
394
|
+
canceledAt?: Maybe<Scalars['BigInt']['output']>;
|
|
395
|
+
canceledAtBlock?: Maybe<Scalars['BigInt']['output']>;
|
|
396
|
+
contentEncoding?: Maybe<Scalars['String']['output']>;
|
|
397
|
+
contentType?: Maybe<Scalars['String']['output']>;
|
|
398
|
+
createTxHash?: Maybe<Scalars['Bytes']['output']>;
|
|
399
|
+
createdAt: Scalars['BigInt']['output'];
|
|
400
|
+
createdAtBlock: Scalars['BigInt']['output'];
|
|
401
|
+
description: Scalars['String']['output'];
|
|
402
|
+
executableAtBlock?: Maybe<Scalars['BigInt']['output']>;
|
|
403
|
+
executableCalls: Array<ExecutableCall>;
|
|
404
|
+
executeTxHash?: Maybe<Scalars['Bytes']['output']>;
|
|
405
|
+
executedAt?: Maybe<Scalars['BigInt']['output']>;
|
|
406
|
+
executedAtBlock?: Maybe<Scalars['BigInt']['output']>;
|
|
407
|
+
id: Scalars['ID']['output'];
|
|
408
|
+
pollResult: PollResult;
|
|
409
|
+
proposalId: Scalars['BigInt']['output'];
|
|
410
|
+
proposer: Scalars['Bytes']['output'];
|
|
411
|
+
queueEnd?: Maybe<Scalars['BigInt']['output']>;
|
|
412
|
+
queueStart?: Maybe<Scalars['BigInt']['output']>;
|
|
413
|
+
queueStartBlock?: Maybe<Scalars['BigInt']['output']>;
|
|
414
|
+
queueTxHash?: Maybe<Scalars['Bytes']['output']>;
|
|
415
|
+
quorum?: Maybe<Scalars['BigInt']['output']>;
|
|
416
|
+
status: ProposalStatus;
|
|
417
|
+
succeededAt?: Maybe<Scalars['BigInt']['output']>;
|
|
418
|
+
succeededAtBlock?: Maybe<Scalars['BigInt']['output']>;
|
|
419
|
+
succeededVoteTxHash?: Maybe<Scalars['Bytes']['output']>;
|
|
420
|
+
timelock?: Maybe<Timelock>;
|
|
421
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
422
|
+
topics: Array<Scalars['String']['output']>;
|
|
423
|
+
unparsedDescription: Scalars['String']['output'];
|
|
424
|
+
unverifiedForumLink?: Maybe<Scalars['String']['output']>;
|
|
425
|
+
voteEndAt: Scalars['BigInt']['output'];
|
|
426
|
+
voteStartAt: Scalars['BigInt']['output'];
|
|
427
|
+
votes: Array<Vote>;
|
|
428
|
+
};
|
|
429
|
+
type ProposalExecutableCallsArgs = {
|
|
430
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
431
|
+
orderBy?: InputMaybe<ExecutableCall_OrderBy>;
|
|
432
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
433
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
434
|
+
where?: InputMaybe<ExecutableCall_Filter>;
|
|
435
|
+
};
|
|
436
|
+
type ProposalVotesArgs = {
|
|
437
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
438
|
+
orderBy?: InputMaybe<Vote_OrderBy>;
|
|
439
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
440
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
441
|
+
where?: InputMaybe<Vote_Filter>;
|
|
442
|
+
};
|
|
443
|
+
declare enum ProposalStatus {
|
|
444
|
+
Active = "ACTIVE",
|
|
445
|
+
CanceledByGuardian = "CANCELED_BY_GUARDIAN",
|
|
446
|
+
CanceledByUser = "CANCELED_BY_USER",
|
|
447
|
+
Defeated = "DEFEATED",
|
|
448
|
+
Executed = "EXECUTED",
|
|
449
|
+
InQueue = "IN_QUEUE",
|
|
450
|
+
Pending = "PENDING",
|
|
451
|
+
PendingExecution = "PENDING_EXECUTION",
|
|
452
|
+
PendingQueue = "PENDING_QUEUE",
|
|
453
|
+
QuorumNotReached = "QUORUM_NOT_REACHED"
|
|
454
|
+
}
|
|
455
|
+
type Proposal_Filter = {
|
|
456
|
+
/** Filter for the block changed event. */
|
|
457
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
458
|
+
and?: InputMaybe<Array<InputMaybe<Proposal_Filter>>>;
|
|
459
|
+
cancelTxHash?: InputMaybe<Scalars['Bytes']['input']>;
|
|
460
|
+
cancelTxHash_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
461
|
+
cancelTxHash_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
462
|
+
cancelTxHash_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
463
|
+
cancelTxHash_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
464
|
+
cancelTxHash_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
465
|
+
cancelTxHash_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
466
|
+
cancelTxHash_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
467
|
+
cancelTxHash_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
468
|
+
cancelTxHash_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
469
|
+
canceledAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
470
|
+
canceledAtBlock?: InputMaybe<Scalars['BigInt']['input']>;
|
|
471
|
+
canceledAtBlock_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
472
|
+
canceledAtBlock_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
473
|
+
canceledAtBlock_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
474
|
+
canceledAtBlock_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
475
|
+
canceledAtBlock_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
476
|
+
canceledAtBlock_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
477
|
+
canceledAtBlock_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
478
|
+
canceledAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
479
|
+
canceledAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
480
|
+
canceledAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
481
|
+
canceledAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
482
|
+
canceledAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
483
|
+
canceledAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
484
|
+
canceledAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
485
|
+
contentEncoding?: InputMaybe<Scalars['String']['input']>;
|
|
486
|
+
contentEncoding_contains?: InputMaybe<Scalars['String']['input']>;
|
|
487
|
+
contentEncoding_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
488
|
+
contentEncoding_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
489
|
+
contentEncoding_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
490
|
+
contentEncoding_gt?: InputMaybe<Scalars['String']['input']>;
|
|
491
|
+
contentEncoding_gte?: InputMaybe<Scalars['String']['input']>;
|
|
492
|
+
contentEncoding_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
493
|
+
contentEncoding_lt?: InputMaybe<Scalars['String']['input']>;
|
|
494
|
+
contentEncoding_lte?: InputMaybe<Scalars['String']['input']>;
|
|
495
|
+
contentEncoding_not?: InputMaybe<Scalars['String']['input']>;
|
|
496
|
+
contentEncoding_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
497
|
+
contentEncoding_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
498
|
+
contentEncoding_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
499
|
+
contentEncoding_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
500
|
+
contentEncoding_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
501
|
+
contentEncoding_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
502
|
+
contentEncoding_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
503
|
+
contentEncoding_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
504
|
+
contentEncoding_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
505
|
+
contentType?: InputMaybe<Scalars['String']['input']>;
|
|
506
|
+
contentType_contains?: InputMaybe<Scalars['String']['input']>;
|
|
507
|
+
contentType_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
508
|
+
contentType_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
509
|
+
contentType_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
510
|
+
contentType_gt?: InputMaybe<Scalars['String']['input']>;
|
|
511
|
+
contentType_gte?: InputMaybe<Scalars['String']['input']>;
|
|
512
|
+
contentType_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
513
|
+
contentType_lt?: InputMaybe<Scalars['String']['input']>;
|
|
514
|
+
contentType_lte?: InputMaybe<Scalars['String']['input']>;
|
|
515
|
+
contentType_not?: InputMaybe<Scalars['String']['input']>;
|
|
516
|
+
contentType_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
517
|
+
contentType_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
518
|
+
contentType_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
519
|
+
contentType_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
520
|
+
contentType_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
521
|
+
contentType_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
522
|
+
contentType_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
523
|
+
contentType_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
524
|
+
contentType_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
525
|
+
createTxHash?: InputMaybe<Scalars['Bytes']['input']>;
|
|
526
|
+
createTxHash_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
527
|
+
createTxHash_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
528
|
+
createTxHash_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
529
|
+
createTxHash_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
530
|
+
createTxHash_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
531
|
+
createTxHash_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
532
|
+
createTxHash_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
533
|
+
createTxHash_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
534
|
+
createTxHash_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
535
|
+
createdAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
536
|
+
createdAtBlock?: InputMaybe<Scalars['BigInt']['input']>;
|
|
537
|
+
createdAtBlock_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
538
|
+
createdAtBlock_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
539
|
+
createdAtBlock_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
540
|
+
createdAtBlock_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
541
|
+
createdAtBlock_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
542
|
+
createdAtBlock_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
543
|
+
createdAtBlock_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
544
|
+
createdAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
545
|
+
createdAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
546
|
+
createdAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
547
|
+
createdAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
548
|
+
createdAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
549
|
+
createdAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
550
|
+
createdAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
551
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
552
|
+
description_contains?: InputMaybe<Scalars['String']['input']>;
|
|
553
|
+
description_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
554
|
+
description_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
555
|
+
description_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
556
|
+
description_gt?: InputMaybe<Scalars['String']['input']>;
|
|
557
|
+
description_gte?: InputMaybe<Scalars['String']['input']>;
|
|
558
|
+
description_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
559
|
+
description_lt?: InputMaybe<Scalars['String']['input']>;
|
|
560
|
+
description_lte?: InputMaybe<Scalars['String']['input']>;
|
|
561
|
+
description_not?: InputMaybe<Scalars['String']['input']>;
|
|
562
|
+
description_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
563
|
+
description_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
564
|
+
description_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
565
|
+
description_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
566
|
+
description_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
567
|
+
description_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
568
|
+
description_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
569
|
+
description_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
570
|
+
description_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
571
|
+
executableAtBlock?: InputMaybe<Scalars['BigInt']['input']>;
|
|
572
|
+
executableAtBlock_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
573
|
+
executableAtBlock_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
574
|
+
executableAtBlock_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
575
|
+
executableAtBlock_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
576
|
+
executableAtBlock_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
577
|
+
executableAtBlock_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
578
|
+
executableAtBlock_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
579
|
+
executableCalls_?: InputMaybe<ExecutableCall_Filter>;
|
|
580
|
+
executeTxHash?: InputMaybe<Scalars['Bytes']['input']>;
|
|
581
|
+
executeTxHash_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
582
|
+
executeTxHash_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
583
|
+
executeTxHash_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
584
|
+
executeTxHash_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
585
|
+
executeTxHash_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
586
|
+
executeTxHash_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
587
|
+
executeTxHash_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
588
|
+
executeTxHash_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
589
|
+
executeTxHash_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
590
|
+
executedAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
591
|
+
executedAtBlock?: InputMaybe<Scalars['BigInt']['input']>;
|
|
592
|
+
executedAtBlock_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
593
|
+
executedAtBlock_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
594
|
+
executedAtBlock_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
595
|
+
executedAtBlock_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
596
|
+
executedAtBlock_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
597
|
+
executedAtBlock_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
598
|
+
executedAtBlock_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
599
|
+
executedAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
600
|
+
executedAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
601
|
+
executedAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
602
|
+
executedAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
603
|
+
executedAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
604
|
+
executedAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
605
|
+
executedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
606
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
607
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
608
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
609
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
610
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
611
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
612
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
613
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
614
|
+
or?: InputMaybe<Array<InputMaybe<Proposal_Filter>>>;
|
|
615
|
+
pollResult?: InputMaybe<Scalars['String']['input']>;
|
|
616
|
+
pollResult_?: InputMaybe<PollResult_Filter>;
|
|
617
|
+
pollResult_contains?: InputMaybe<Scalars['String']['input']>;
|
|
618
|
+
pollResult_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
619
|
+
pollResult_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
620
|
+
pollResult_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
621
|
+
pollResult_gt?: InputMaybe<Scalars['String']['input']>;
|
|
622
|
+
pollResult_gte?: InputMaybe<Scalars['String']['input']>;
|
|
623
|
+
pollResult_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
624
|
+
pollResult_lt?: InputMaybe<Scalars['String']['input']>;
|
|
625
|
+
pollResult_lte?: InputMaybe<Scalars['String']['input']>;
|
|
626
|
+
pollResult_not?: InputMaybe<Scalars['String']['input']>;
|
|
627
|
+
pollResult_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
628
|
+
pollResult_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
629
|
+
pollResult_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
630
|
+
pollResult_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
631
|
+
pollResult_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
632
|
+
pollResult_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
633
|
+
pollResult_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
634
|
+
pollResult_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
635
|
+
pollResult_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
636
|
+
proposalId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
637
|
+
proposalId_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
638
|
+
proposalId_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
639
|
+
proposalId_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
640
|
+
proposalId_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
641
|
+
proposalId_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
642
|
+
proposalId_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
643
|
+
proposalId_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
644
|
+
proposer?: InputMaybe<Scalars['Bytes']['input']>;
|
|
645
|
+
proposer_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
646
|
+
proposer_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
647
|
+
proposer_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
648
|
+
proposer_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
649
|
+
proposer_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
650
|
+
proposer_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
651
|
+
proposer_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
652
|
+
proposer_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
653
|
+
proposer_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
654
|
+
queueEnd?: InputMaybe<Scalars['BigInt']['input']>;
|
|
655
|
+
queueEnd_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
656
|
+
queueEnd_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
657
|
+
queueEnd_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
658
|
+
queueEnd_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
659
|
+
queueEnd_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
660
|
+
queueEnd_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
661
|
+
queueEnd_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
662
|
+
queueStart?: InputMaybe<Scalars['BigInt']['input']>;
|
|
663
|
+
queueStartBlock?: InputMaybe<Scalars['BigInt']['input']>;
|
|
664
|
+
queueStartBlock_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
665
|
+
queueStartBlock_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
666
|
+
queueStartBlock_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
667
|
+
queueStartBlock_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
668
|
+
queueStartBlock_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
669
|
+
queueStartBlock_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
670
|
+
queueStartBlock_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
671
|
+
queueStart_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
672
|
+
queueStart_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
673
|
+
queueStart_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
674
|
+
queueStart_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
675
|
+
queueStart_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
676
|
+
queueStart_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
677
|
+
queueStart_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
678
|
+
queueTxHash?: InputMaybe<Scalars['Bytes']['input']>;
|
|
679
|
+
queueTxHash_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
680
|
+
queueTxHash_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
681
|
+
queueTxHash_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
682
|
+
queueTxHash_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
683
|
+
queueTxHash_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
684
|
+
queueTxHash_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
685
|
+
queueTxHash_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
686
|
+
queueTxHash_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
687
|
+
queueTxHash_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
688
|
+
quorum?: InputMaybe<Scalars['BigInt']['input']>;
|
|
689
|
+
quorum_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
690
|
+
quorum_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
691
|
+
quorum_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
692
|
+
quorum_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
693
|
+
quorum_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
694
|
+
quorum_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
695
|
+
quorum_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
696
|
+
status?: InputMaybe<ProposalStatus>;
|
|
697
|
+
status_in?: InputMaybe<Array<ProposalStatus>>;
|
|
698
|
+
status_not?: InputMaybe<ProposalStatus>;
|
|
699
|
+
status_not_in?: InputMaybe<Array<ProposalStatus>>;
|
|
700
|
+
succeededAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
701
|
+
succeededAtBlock?: InputMaybe<Scalars['BigInt']['input']>;
|
|
702
|
+
succeededAtBlock_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
703
|
+
succeededAtBlock_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
704
|
+
succeededAtBlock_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
705
|
+
succeededAtBlock_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
706
|
+
succeededAtBlock_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
707
|
+
succeededAtBlock_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
708
|
+
succeededAtBlock_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
709
|
+
succeededAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
710
|
+
succeededAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
711
|
+
succeededAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
712
|
+
succeededAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
713
|
+
succeededAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
714
|
+
succeededAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
715
|
+
succeededAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
716
|
+
succeededVoteTxHash?: InputMaybe<Scalars['Bytes']['input']>;
|
|
717
|
+
succeededVoteTxHash_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
718
|
+
succeededVoteTxHash_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
719
|
+
succeededVoteTxHash_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
720
|
+
succeededVoteTxHash_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
721
|
+
succeededVoteTxHash_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
722
|
+
succeededVoteTxHash_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
723
|
+
succeededVoteTxHash_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
724
|
+
succeededVoteTxHash_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
725
|
+
succeededVoteTxHash_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
726
|
+
timelock_?: InputMaybe<Timelock_Filter>;
|
|
727
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
728
|
+
title_contains?: InputMaybe<Scalars['String']['input']>;
|
|
729
|
+
title_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
730
|
+
title_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
731
|
+
title_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
732
|
+
title_gt?: InputMaybe<Scalars['String']['input']>;
|
|
733
|
+
title_gte?: InputMaybe<Scalars['String']['input']>;
|
|
734
|
+
title_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
735
|
+
title_lt?: InputMaybe<Scalars['String']['input']>;
|
|
736
|
+
title_lte?: InputMaybe<Scalars['String']['input']>;
|
|
737
|
+
title_not?: InputMaybe<Scalars['String']['input']>;
|
|
738
|
+
title_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
739
|
+
title_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
740
|
+
title_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
741
|
+
title_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
742
|
+
title_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
743
|
+
title_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
744
|
+
title_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
745
|
+
title_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
746
|
+
title_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
747
|
+
topics?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
748
|
+
topics_contains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
749
|
+
topics_contains_nocase?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
750
|
+
topics_not?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
751
|
+
topics_not_contains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
752
|
+
topics_not_contains_nocase?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
753
|
+
unparsedDescription?: InputMaybe<Scalars['String']['input']>;
|
|
754
|
+
unparsedDescription_contains?: InputMaybe<Scalars['String']['input']>;
|
|
755
|
+
unparsedDescription_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
756
|
+
unparsedDescription_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
757
|
+
unparsedDescription_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
758
|
+
unparsedDescription_gt?: InputMaybe<Scalars['String']['input']>;
|
|
759
|
+
unparsedDescription_gte?: InputMaybe<Scalars['String']['input']>;
|
|
760
|
+
unparsedDescription_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
761
|
+
unparsedDescription_lt?: InputMaybe<Scalars['String']['input']>;
|
|
762
|
+
unparsedDescription_lte?: InputMaybe<Scalars['String']['input']>;
|
|
763
|
+
unparsedDescription_not?: InputMaybe<Scalars['String']['input']>;
|
|
764
|
+
unparsedDescription_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
765
|
+
unparsedDescription_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
766
|
+
unparsedDescription_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
767
|
+
unparsedDescription_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
768
|
+
unparsedDescription_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
769
|
+
unparsedDescription_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
770
|
+
unparsedDescription_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
771
|
+
unparsedDescription_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
772
|
+
unparsedDescription_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
773
|
+
unverifiedForumLink?: InputMaybe<Scalars['String']['input']>;
|
|
774
|
+
unverifiedForumLink_contains?: InputMaybe<Scalars['String']['input']>;
|
|
775
|
+
unverifiedForumLink_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
776
|
+
unverifiedForumLink_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
777
|
+
unverifiedForumLink_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
778
|
+
unverifiedForumLink_gt?: InputMaybe<Scalars['String']['input']>;
|
|
779
|
+
unverifiedForumLink_gte?: InputMaybe<Scalars['String']['input']>;
|
|
780
|
+
unverifiedForumLink_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
781
|
+
unverifiedForumLink_lt?: InputMaybe<Scalars['String']['input']>;
|
|
782
|
+
unverifiedForumLink_lte?: InputMaybe<Scalars['String']['input']>;
|
|
783
|
+
unverifiedForumLink_not?: InputMaybe<Scalars['String']['input']>;
|
|
784
|
+
unverifiedForumLink_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
785
|
+
unverifiedForumLink_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
786
|
+
unverifiedForumLink_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
787
|
+
unverifiedForumLink_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
788
|
+
unverifiedForumLink_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
789
|
+
unverifiedForumLink_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
790
|
+
unverifiedForumLink_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
791
|
+
unverifiedForumLink_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
792
|
+
unverifiedForumLink_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
793
|
+
voteEndAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
794
|
+
voteEndAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
795
|
+
voteEndAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
796
|
+
voteEndAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
797
|
+
voteEndAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
798
|
+
voteEndAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
799
|
+
voteEndAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
800
|
+
voteEndAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
801
|
+
voteStartAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
802
|
+
voteStartAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
803
|
+
voteStartAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
804
|
+
voteStartAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
805
|
+
voteStartAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
806
|
+
voteStartAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
807
|
+
voteStartAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
808
|
+
voteStartAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
809
|
+
votes_?: InputMaybe<Vote_Filter>;
|
|
810
|
+
};
|
|
811
|
+
declare enum Proposal_OrderBy {
|
|
812
|
+
CancelTxHash = "cancelTxHash",
|
|
813
|
+
CanceledAt = "canceledAt",
|
|
814
|
+
CanceledAtBlock = "canceledAtBlock",
|
|
815
|
+
ContentEncoding = "contentEncoding",
|
|
816
|
+
ContentType = "contentType",
|
|
817
|
+
CreateTxHash = "createTxHash",
|
|
818
|
+
CreatedAt = "createdAt",
|
|
819
|
+
CreatedAtBlock = "createdAtBlock",
|
|
820
|
+
Description = "description",
|
|
821
|
+
ExecutableAtBlock = "executableAtBlock",
|
|
822
|
+
ExecutableCalls = "executableCalls",
|
|
823
|
+
ExecuteTxHash = "executeTxHash",
|
|
824
|
+
ExecutedAt = "executedAt",
|
|
825
|
+
ExecutedAtBlock = "executedAtBlock",
|
|
826
|
+
Id = "id",
|
|
827
|
+
PollResult = "pollResult",
|
|
828
|
+
PollResultAbstain = "pollResult__abstain",
|
|
829
|
+
PollResultAbstainPercentage = "pollResult__abstainPercentage",
|
|
830
|
+
PollResultAbstainVotersCount = "pollResult__abstainVotersCount",
|
|
831
|
+
PollResultAgainst = "pollResult__against",
|
|
832
|
+
PollResultAgainstPercentage = "pollResult__againstPercentage",
|
|
833
|
+
PollResultAgainstVotersCount = "pollResult__againstVotersCount",
|
|
834
|
+
PollResultFor = "pollResult__for",
|
|
835
|
+
PollResultForPercentage = "pollResult__forPercentage",
|
|
836
|
+
PollResultForVotersCount = "pollResult__forVotersCount",
|
|
837
|
+
PollResultId = "pollResult__id",
|
|
838
|
+
PollResultTotal = "pollResult__total",
|
|
839
|
+
PollResultTotalTowardsQuorum = "pollResult__totalTowardsQuorum",
|
|
840
|
+
PollResultTotalVotersCount = "pollResult__totalVotersCount",
|
|
841
|
+
ProposalId = "proposalId",
|
|
842
|
+
Proposer = "proposer",
|
|
843
|
+
QueueEnd = "queueEnd",
|
|
844
|
+
QueueStart = "queueStart",
|
|
845
|
+
QueueStartBlock = "queueStartBlock",
|
|
846
|
+
QueueTxHash = "queueTxHash",
|
|
847
|
+
Quorum = "quorum",
|
|
848
|
+
Status = "status",
|
|
849
|
+
SucceededAt = "succeededAt",
|
|
850
|
+
SucceededAtBlock = "succeededAtBlock",
|
|
851
|
+
SucceededVoteTxHash = "succeededVoteTxHash",
|
|
852
|
+
Timelock = "timelock",
|
|
853
|
+
TimelockId = "timelock__id",
|
|
854
|
+
Title = "title",
|
|
855
|
+
Topics = "topics",
|
|
856
|
+
UnparsedDescription = "unparsedDescription",
|
|
857
|
+
UnverifiedForumLink = "unverifiedForumLink",
|
|
858
|
+
VoteEndAt = "voteEndAt",
|
|
859
|
+
VoteStartAt = "voteStartAt",
|
|
860
|
+
Votes = "votes"
|
|
861
|
+
}
|
|
862
|
+
type Query = {
|
|
863
|
+
__typename?: 'Query';
|
|
864
|
+
/** Access to subgraph metadata */
|
|
865
|
+
_meta?: Maybe<_Meta_>;
|
|
866
|
+
executableCall?: Maybe<ExecutableCall>;
|
|
867
|
+
executableCalls: Array<ExecutableCall>;
|
|
868
|
+
pollResult?: Maybe<PollResult>;
|
|
869
|
+
pollResults: Array<PollResult>;
|
|
870
|
+
proposal?: Maybe<Proposal>;
|
|
871
|
+
proposalSearch: Array<Proposal>;
|
|
872
|
+
proposals: Array<Proposal>;
|
|
873
|
+
timelock?: Maybe<Timelock>;
|
|
874
|
+
timelocks: Array<Timelock>;
|
|
875
|
+
vote?: Maybe<Vote>;
|
|
876
|
+
votes: Array<Vote>;
|
|
877
|
+
};
|
|
878
|
+
type Query_MetaArgs = {
|
|
879
|
+
block?: InputMaybe<Block_Height>;
|
|
880
|
+
};
|
|
881
|
+
type QueryExecutableCallArgs = {
|
|
882
|
+
block?: InputMaybe<Block_Height>;
|
|
883
|
+
id: Scalars['ID']['input'];
|
|
884
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
885
|
+
};
|
|
886
|
+
type QueryExecutableCallsArgs = {
|
|
887
|
+
block?: InputMaybe<Block_Height>;
|
|
888
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
889
|
+
orderBy?: InputMaybe<ExecutableCall_OrderBy>;
|
|
890
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
891
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
892
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
893
|
+
where?: InputMaybe<ExecutableCall_Filter>;
|
|
894
|
+
};
|
|
895
|
+
type QueryPollResultArgs = {
|
|
896
|
+
block?: InputMaybe<Block_Height>;
|
|
897
|
+
id: Scalars['ID']['input'];
|
|
898
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
899
|
+
};
|
|
900
|
+
type QueryPollResultsArgs = {
|
|
901
|
+
block?: InputMaybe<Block_Height>;
|
|
902
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
903
|
+
orderBy?: InputMaybe<PollResult_OrderBy>;
|
|
904
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
905
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
906
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
907
|
+
where?: InputMaybe<PollResult_Filter>;
|
|
908
|
+
};
|
|
909
|
+
type QueryProposalArgs = {
|
|
910
|
+
block?: InputMaybe<Block_Height>;
|
|
911
|
+
id: Scalars['ID']['input'];
|
|
912
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
913
|
+
};
|
|
914
|
+
type QueryProposalSearchArgs = {
|
|
915
|
+
block?: InputMaybe<Block_Height>;
|
|
916
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
917
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
918
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
919
|
+
text: Scalars['String']['input'];
|
|
920
|
+
where?: InputMaybe<Proposal_Filter>;
|
|
921
|
+
};
|
|
922
|
+
type QueryProposalsArgs = {
|
|
923
|
+
block?: InputMaybe<Block_Height>;
|
|
924
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
925
|
+
orderBy?: InputMaybe<Proposal_OrderBy>;
|
|
926
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
927
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
928
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
929
|
+
where?: InputMaybe<Proposal_Filter>;
|
|
930
|
+
};
|
|
931
|
+
type QueryTimelockArgs = {
|
|
932
|
+
block?: InputMaybe<Block_Height>;
|
|
933
|
+
id: Scalars['ID']['input'];
|
|
934
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
935
|
+
};
|
|
936
|
+
type QueryTimelocksArgs = {
|
|
937
|
+
block?: InputMaybe<Block_Height>;
|
|
938
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
939
|
+
orderBy?: InputMaybe<Timelock_OrderBy>;
|
|
940
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
941
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
942
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
943
|
+
where?: InputMaybe<Timelock_Filter>;
|
|
944
|
+
};
|
|
945
|
+
type QueryVoteArgs = {
|
|
946
|
+
block?: InputMaybe<Block_Height>;
|
|
947
|
+
id: Scalars['ID']['input'];
|
|
948
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
949
|
+
};
|
|
950
|
+
type QueryVotesArgs = {
|
|
951
|
+
block?: InputMaybe<Block_Height>;
|
|
952
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
953
|
+
orderBy?: InputMaybe<Vote_OrderBy>;
|
|
954
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
955
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
956
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
957
|
+
where?: InputMaybe<Vote_Filter>;
|
|
958
|
+
};
|
|
959
|
+
type Subscription = {
|
|
960
|
+
__typename?: 'Subscription';
|
|
961
|
+
/** Access to subgraph metadata */
|
|
962
|
+
_meta?: Maybe<_Meta_>;
|
|
963
|
+
executableCall?: Maybe<ExecutableCall>;
|
|
964
|
+
executableCalls: Array<ExecutableCall>;
|
|
965
|
+
pollResult?: Maybe<PollResult>;
|
|
966
|
+
pollResults: Array<PollResult>;
|
|
967
|
+
proposal?: Maybe<Proposal>;
|
|
968
|
+
proposals: Array<Proposal>;
|
|
969
|
+
timelock?: Maybe<Timelock>;
|
|
970
|
+
timelocks: Array<Timelock>;
|
|
971
|
+
vote?: Maybe<Vote>;
|
|
972
|
+
votes: Array<Vote>;
|
|
973
|
+
};
|
|
974
|
+
type Subscription_MetaArgs = {
|
|
975
|
+
block?: InputMaybe<Block_Height>;
|
|
976
|
+
};
|
|
977
|
+
type SubscriptionExecutableCallArgs = {
|
|
978
|
+
block?: InputMaybe<Block_Height>;
|
|
979
|
+
id: Scalars['ID']['input'];
|
|
980
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
981
|
+
};
|
|
982
|
+
type SubscriptionExecutableCallsArgs = {
|
|
983
|
+
block?: InputMaybe<Block_Height>;
|
|
984
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
985
|
+
orderBy?: InputMaybe<ExecutableCall_OrderBy>;
|
|
986
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
987
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
988
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
989
|
+
where?: InputMaybe<ExecutableCall_Filter>;
|
|
990
|
+
};
|
|
991
|
+
type SubscriptionPollResultArgs = {
|
|
992
|
+
block?: InputMaybe<Block_Height>;
|
|
993
|
+
id: Scalars['ID']['input'];
|
|
994
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
995
|
+
};
|
|
996
|
+
type SubscriptionPollResultsArgs = {
|
|
997
|
+
block?: InputMaybe<Block_Height>;
|
|
998
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
999
|
+
orderBy?: InputMaybe<PollResult_OrderBy>;
|
|
1000
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1001
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1002
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1003
|
+
where?: InputMaybe<PollResult_Filter>;
|
|
1004
|
+
};
|
|
1005
|
+
type SubscriptionProposalArgs = {
|
|
1006
|
+
block?: InputMaybe<Block_Height>;
|
|
1007
|
+
id: Scalars['ID']['input'];
|
|
1008
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1009
|
+
};
|
|
1010
|
+
type SubscriptionProposalsArgs = {
|
|
1011
|
+
block?: InputMaybe<Block_Height>;
|
|
1012
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1013
|
+
orderBy?: InputMaybe<Proposal_OrderBy>;
|
|
1014
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1015
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1016
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1017
|
+
where?: InputMaybe<Proposal_Filter>;
|
|
1018
|
+
};
|
|
1019
|
+
type SubscriptionTimelockArgs = {
|
|
1020
|
+
block?: InputMaybe<Block_Height>;
|
|
1021
|
+
id: Scalars['ID']['input'];
|
|
1022
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1023
|
+
};
|
|
1024
|
+
type SubscriptionTimelocksArgs = {
|
|
1025
|
+
block?: InputMaybe<Block_Height>;
|
|
1026
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1027
|
+
orderBy?: InputMaybe<Timelock_OrderBy>;
|
|
1028
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1029
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1030
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1031
|
+
where?: InputMaybe<Timelock_Filter>;
|
|
1032
|
+
};
|
|
1033
|
+
type SubscriptionVoteArgs = {
|
|
1034
|
+
block?: InputMaybe<Block_Height>;
|
|
1035
|
+
id: Scalars['ID']['input'];
|
|
1036
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1037
|
+
};
|
|
1038
|
+
type SubscriptionVotesArgs = {
|
|
1039
|
+
block?: InputMaybe<Block_Height>;
|
|
1040
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1041
|
+
orderBy?: InputMaybe<Vote_OrderBy>;
|
|
1042
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1043
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1044
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1045
|
+
where?: InputMaybe<Vote_Filter>;
|
|
1046
|
+
};
|
|
1047
|
+
type Timelock = {
|
|
1048
|
+
__typename?: 'Timelock';
|
|
1049
|
+
id: Scalars['Bytes']['output'];
|
|
1050
|
+
proposal: Proposal;
|
|
1051
|
+
};
|
|
1052
|
+
type Timelock_Filter = {
|
|
1053
|
+
/** Filter for the block changed event. */
|
|
1054
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1055
|
+
and?: InputMaybe<Array<InputMaybe<Timelock_Filter>>>;
|
|
1056
|
+
id?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1057
|
+
id_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1058
|
+
id_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1059
|
+
id_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1060
|
+
id_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1061
|
+
id_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1062
|
+
id_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1063
|
+
id_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1064
|
+
id_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1065
|
+
id_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1066
|
+
or?: InputMaybe<Array<InputMaybe<Timelock_Filter>>>;
|
|
1067
|
+
proposal?: InputMaybe<Scalars['String']['input']>;
|
|
1068
|
+
proposal_?: InputMaybe<Proposal_Filter>;
|
|
1069
|
+
proposal_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1070
|
+
proposal_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1071
|
+
proposal_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1072
|
+
proposal_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1073
|
+
proposal_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1074
|
+
proposal_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1075
|
+
proposal_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1076
|
+
proposal_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1077
|
+
proposal_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1078
|
+
proposal_not?: InputMaybe<Scalars['String']['input']>;
|
|
1079
|
+
proposal_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1080
|
+
proposal_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1081
|
+
proposal_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1082
|
+
proposal_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1083
|
+
proposal_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1084
|
+
proposal_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1085
|
+
proposal_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1086
|
+
proposal_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1087
|
+
proposal_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1088
|
+
};
|
|
1089
|
+
declare enum Timelock_OrderBy {
|
|
1090
|
+
Id = "id",
|
|
1091
|
+
Proposal = "proposal",
|
|
1092
|
+
ProposalCancelTxHash = "proposal__cancelTxHash",
|
|
1093
|
+
ProposalCanceledAt = "proposal__canceledAt",
|
|
1094
|
+
ProposalCanceledAtBlock = "proposal__canceledAtBlock",
|
|
1095
|
+
ProposalContentEncoding = "proposal__contentEncoding",
|
|
1096
|
+
ProposalContentType = "proposal__contentType",
|
|
1097
|
+
ProposalCreateTxHash = "proposal__createTxHash",
|
|
1098
|
+
ProposalCreatedAt = "proposal__createdAt",
|
|
1099
|
+
ProposalCreatedAtBlock = "proposal__createdAtBlock",
|
|
1100
|
+
ProposalDescription = "proposal__description",
|
|
1101
|
+
ProposalExecutableAtBlock = "proposal__executableAtBlock",
|
|
1102
|
+
ProposalExecuteTxHash = "proposal__executeTxHash",
|
|
1103
|
+
ProposalExecutedAt = "proposal__executedAt",
|
|
1104
|
+
ProposalExecutedAtBlock = "proposal__executedAtBlock",
|
|
1105
|
+
ProposalId = "proposal__id",
|
|
1106
|
+
ProposalProposalId = "proposal__proposalId",
|
|
1107
|
+
ProposalProposer = "proposal__proposer",
|
|
1108
|
+
ProposalQueueEnd = "proposal__queueEnd",
|
|
1109
|
+
ProposalQueueStart = "proposal__queueStart",
|
|
1110
|
+
ProposalQueueStartBlock = "proposal__queueStartBlock",
|
|
1111
|
+
ProposalQueueTxHash = "proposal__queueTxHash",
|
|
1112
|
+
ProposalQuorum = "proposal__quorum",
|
|
1113
|
+
ProposalStatus = "proposal__status",
|
|
1114
|
+
ProposalSucceededAt = "proposal__succeededAt",
|
|
1115
|
+
ProposalSucceededAtBlock = "proposal__succeededAtBlock",
|
|
1116
|
+
ProposalSucceededVoteTxHash = "proposal__succeededVoteTxHash",
|
|
1117
|
+
ProposalTitle = "proposal__title",
|
|
1118
|
+
ProposalUnparsedDescription = "proposal__unparsedDescription",
|
|
1119
|
+
ProposalUnverifiedForumLink = "proposal__unverifiedForumLink",
|
|
1120
|
+
ProposalVoteEndAt = "proposal__voteEndAt",
|
|
1121
|
+
ProposalVoteStartAt = "proposal__voteStartAt"
|
|
1122
|
+
}
|
|
1123
|
+
type Vote = {
|
|
1124
|
+
__typename?: 'Vote';
|
|
1125
|
+
id: Scalars['Int8']['output'];
|
|
1126
|
+
params?: Maybe<Scalars['Bytes']['output']>;
|
|
1127
|
+
proposalId: Proposal;
|
|
1128
|
+
reason: Scalars['String']['output'];
|
|
1129
|
+
support: VoteSupportType;
|
|
1130
|
+
timestamp: Scalars['BigInt']['output'];
|
|
1131
|
+
voter: Scalars['Bytes']['output'];
|
|
1132
|
+
weight: Scalars['BigInt']['output'];
|
|
1133
|
+
};
|
|
1134
|
+
declare enum VoteSupportType {
|
|
1135
|
+
Abstain = "ABSTAIN",
|
|
1136
|
+
Against = "AGAINST",
|
|
1137
|
+
For = "FOR"
|
|
1138
|
+
}
|
|
1139
|
+
type Vote_Filter = {
|
|
1140
|
+
/** Filter for the block changed event. */
|
|
1141
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1142
|
+
and?: InputMaybe<Array<InputMaybe<Vote_Filter>>>;
|
|
1143
|
+
id?: InputMaybe<Scalars['Int8']['input']>;
|
|
1144
|
+
id_gt?: InputMaybe<Scalars['Int8']['input']>;
|
|
1145
|
+
id_gte?: InputMaybe<Scalars['Int8']['input']>;
|
|
1146
|
+
id_in?: InputMaybe<Array<Scalars['Int8']['input']>>;
|
|
1147
|
+
id_lt?: InputMaybe<Scalars['Int8']['input']>;
|
|
1148
|
+
id_lte?: InputMaybe<Scalars['Int8']['input']>;
|
|
1149
|
+
id_not?: InputMaybe<Scalars['Int8']['input']>;
|
|
1150
|
+
id_not_in?: InputMaybe<Array<Scalars['Int8']['input']>>;
|
|
1151
|
+
or?: InputMaybe<Array<InputMaybe<Vote_Filter>>>;
|
|
1152
|
+
params?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1153
|
+
params_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1154
|
+
params_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1155
|
+
params_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1156
|
+
params_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1157
|
+
params_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1158
|
+
params_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1159
|
+
params_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1160
|
+
params_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1161
|
+
params_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1162
|
+
proposalId?: InputMaybe<Scalars['String']['input']>;
|
|
1163
|
+
proposalId_?: InputMaybe<Proposal_Filter>;
|
|
1164
|
+
proposalId_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1165
|
+
proposalId_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1166
|
+
proposalId_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1167
|
+
proposalId_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1168
|
+
proposalId_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1169
|
+
proposalId_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1170
|
+
proposalId_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1171
|
+
proposalId_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1172
|
+
proposalId_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1173
|
+
proposalId_not?: InputMaybe<Scalars['String']['input']>;
|
|
1174
|
+
proposalId_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1175
|
+
proposalId_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1176
|
+
proposalId_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1177
|
+
proposalId_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1178
|
+
proposalId_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1179
|
+
proposalId_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1180
|
+
proposalId_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1181
|
+
proposalId_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1182
|
+
proposalId_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1183
|
+
reason?: InputMaybe<Scalars['String']['input']>;
|
|
1184
|
+
reason_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1185
|
+
reason_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1186
|
+
reason_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1187
|
+
reason_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1188
|
+
reason_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1189
|
+
reason_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1190
|
+
reason_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1191
|
+
reason_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1192
|
+
reason_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1193
|
+
reason_not?: InputMaybe<Scalars['String']['input']>;
|
|
1194
|
+
reason_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1195
|
+
reason_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1196
|
+
reason_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1197
|
+
reason_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1198
|
+
reason_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1199
|
+
reason_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1200
|
+
reason_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1201
|
+
reason_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1202
|
+
reason_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1203
|
+
support?: InputMaybe<VoteSupportType>;
|
|
1204
|
+
support_in?: InputMaybe<Array<VoteSupportType>>;
|
|
1205
|
+
support_not?: InputMaybe<VoteSupportType>;
|
|
1206
|
+
support_not_in?: InputMaybe<Array<VoteSupportType>>;
|
|
1207
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1208
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1209
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1210
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1211
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1212
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1213
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1214
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1215
|
+
voter?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1216
|
+
voter_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1217
|
+
voter_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1218
|
+
voter_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1219
|
+
voter_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1220
|
+
voter_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1221
|
+
voter_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1222
|
+
voter_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1223
|
+
voter_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1224
|
+
voter_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1225
|
+
weight?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1226
|
+
weight_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1227
|
+
weight_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1228
|
+
weight_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1229
|
+
weight_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1230
|
+
weight_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1231
|
+
weight_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1232
|
+
weight_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1233
|
+
};
|
|
1234
|
+
declare enum Vote_OrderBy {
|
|
1235
|
+
Id = "id",
|
|
1236
|
+
Params = "params",
|
|
1237
|
+
ProposalId = "proposalId",
|
|
1238
|
+
ProposalIdCancelTxHash = "proposalId__cancelTxHash",
|
|
1239
|
+
ProposalIdCanceledAt = "proposalId__canceledAt",
|
|
1240
|
+
ProposalIdCanceledAtBlock = "proposalId__canceledAtBlock",
|
|
1241
|
+
ProposalIdContentEncoding = "proposalId__contentEncoding",
|
|
1242
|
+
ProposalIdContentType = "proposalId__contentType",
|
|
1243
|
+
ProposalIdCreateTxHash = "proposalId__createTxHash",
|
|
1244
|
+
ProposalIdCreatedAt = "proposalId__createdAt",
|
|
1245
|
+
ProposalIdCreatedAtBlock = "proposalId__createdAtBlock",
|
|
1246
|
+
ProposalIdDescription = "proposalId__description",
|
|
1247
|
+
ProposalIdExecutableAtBlock = "proposalId__executableAtBlock",
|
|
1248
|
+
ProposalIdExecuteTxHash = "proposalId__executeTxHash",
|
|
1249
|
+
ProposalIdExecutedAt = "proposalId__executedAt",
|
|
1250
|
+
ProposalIdExecutedAtBlock = "proposalId__executedAtBlock",
|
|
1251
|
+
ProposalIdId = "proposalId__id",
|
|
1252
|
+
ProposalIdProposalId = "proposalId__proposalId",
|
|
1253
|
+
ProposalIdProposer = "proposalId__proposer",
|
|
1254
|
+
ProposalIdQueueEnd = "proposalId__queueEnd",
|
|
1255
|
+
ProposalIdQueueStart = "proposalId__queueStart",
|
|
1256
|
+
ProposalIdQueueStartBlock = "proposalId__queueStartBlock",
|
|
1257
|
+
ProposalIdQueueTxHash = "proposalId__queueTxHash",
|
|
1258
|
+
ProposalIdQuorum = "proposalId__quorum",
|
|
1259
|
+
ProposalIdStatus = "proposalId__status",
|
|
1260
|
+
ProposalIdSucceededAt = "proposalId__succeededAt",
|
|
1261
|
+
ProposalIdSucceededAtBlock = "proposalId__succeededAtBlock",
|
|
1262
|
+
ProposalIdSucceededVoteTxHash = "proposalId__succeededVoteTxHash",
|
|
1263
|
+
ProposalIdTitle = "proposalId__title",
|
|
1264
|
+
ProposalIdUnparsedDescription = "proposalId__unparsedDescription",
|
|
1265
|
+
ProposalIdUnverifiedForumLink = "proposalId__unverifiedForumLink",
|
|
1266
|
+
ProposalIdVoteEndAt = "proposalId__voteEndAt",
|
|
1267
|
+
ProposalIdVoteStartAt = "proposalId__voteStartAt",
|
|
1268
|
+
Reason = "reason",
|
|
1269
|
+
Support = "support",
|
|
1270
|
+
Timestamp = "timestamp",
|
|
1271
|
+
Voter = "voter",
|
|
1272
|
+
Weight = "weight"
|
|
1273
|
+
}
|
|
1274
|
+
type _Block_ = {
|
|
1275
|
+
__typename?: '_Block_';
|
|
1276
|
+
/** The hash of the block */
|
|
1277
|
+
hash?: Maybe<Scalars['Bytes']['output']>;
|
|
1278
|
+
/** The block number */
|
|
1279
|
+
number: Scalars['Int']['output'];
|
|
1280
|
+
/** The hash of the parent block */
|
|
1281
|
+
parentHash?: Maybe<Scalars['Bytes']['output']>;
|
|
1282
|
+
/** Integer representation of the timestamp stored in blocks for the chain */
|
|
1283
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
1284
|
+
};
|
|
1285
|
+
/** The type for the top-level _meta field */
|
|
1286
|
+
type _Meta_ = {
|
|
1287
|
+
__typename?: '_Meta_';
|
|
1288
|
+
/**
|
|
1289
|
+
* Information about a specific subgraph block. The hash of the block
|
|
1290
|
+
* will be null if the _meta field has a block constraint that asks for
|
|
1291
|
+
* a block number. It will be filled if the _meta field has no block constraint
|
|
1292
|
+
* and therefore asks for the latest block
|
|
1293
|
+
*
|
|
1294
|
+
*/
|
|
1295
|
+
block: _Block_;
|
|
1296
|
+
/** The deployment ID */
|
|
1297
|
+
deployment: Scalars['String']['output'];
|
|
1298
|
+
/** If `true`, the subgraph encountered indexing errors at some past block */
|
|
1299
|
+
hasIndexingErrors: Scalars['Boolean']['output'];
|
|
1300
|
+
};
|
|
1301
|
+
declare enum _SubgraphErrorPolicy_ {
|
|
1302
|
+
/** Data will be returned even if the subgraph has indexing errors */
|
|
1303
|
+
Allow = "allow",
|
|
1304
|
+
/** If the subgraph has indexing errors, data will be omitted. The default. */
|
|
1305
|
+
Deny = "deny"
|
|
1306
|
+
}
|
|
1307
|
+
type ProposalSelectionFragment = {
|
|
1308
|
+
__typename?: 'Proposal';
|
|
1309
|
+
id: string;
|
|
1310
|
+
proposer: any;
|
|
1311
|
+
proposalId: any;
|
|
1312
|
+
description: string;
|
|
1313
|
+
status: ProposalStatus;
|
|
1314
|
+
createdAt: any;
|
|
1315
|
+
createdAtBlock: any;
|
|
1316
|
+
unverifiedForumLink?: string | null;
|
|
1317
|
+
quorum?: any | null;
|
|
1318
|
+
succeededAt?: any | null;
|
|
1319
|
+
voteStartAt: any;
|
|
1320
|
+
voteEndAt: any;
|
|
1321
|
+
queueStart?: any | null;
|
|
1322
|
+
queueEnd?: any | null;
|
|
1323
|
+
canceledAt?: any | null;
|
|
1324
|
+
executedAt?: any | null;
|
|
1325
|
+
title?: string | null;
|
|
1326
|
+
topics: Array<string>;
|
|
1327
|
+
timelock?: {
|
|
1328
|
+
__typename?: 'Timelock';
|
|
1329
|
+
id: any;
|
|
1330
|
+
} | null;
|
|
1331
|
+
pollResult: {
|
|
1332
|
+
__typename?: 'PollResult';
|
|
1333
|
+
for: any;
|
|
1334
|
+
forVotersCount: number;
|
|
1335
|
+
forPercentage: string;
|
|
1336
|
+
against: any;
|
|
1337
|
+
againstVotersCount: number;
|
|
1338
|
+
againstPercentage: string;
|
|
1339
|
+
abstain: any;
|
|
1340
|
+
abstainVotersCount: number;
|
|
1341
|
+
abstainPercentage: string;
|
|
1342
|
+
total: any;
|
|
1343
|
+
totalVotersCount: number;
|
|
1344
|
+
totalTowardsQuorum: any;
|
|
1345
|
+
};
|
|
1346
|
+
};
|
|
1347
|
+
type ExecutableCallSubsetFragment = {
|
|
1348
|
+
__typename?: 'ExecutableCall';
|
|
1349
|
+
id: string;
|
|
1350
|
+
target: any;
|
|
1351
|
+
value: any;
|
|
1352
|
+
calldata: any;
|
|
1353
|
+
};
|
|
1354
|
+
type ProposalVoteFragment = {
|
|
1355
|
+
__typename?: 'Vote';
|
|
1356
|
+
id: any;
|
|
1357
|
+
voter: any;
|
|
1358
|
+
weight: any;
|
|
1359
|
+
support: VoteSupportType;
|
|
1360
|
+
timestamp: any;
|
|
1361
|
+
reason: string;
|
|
1362
|
+
};
|
|
1363
|
+
type ProposalWithVotesFragment = {
|
|
1364
|
+
__typename?: 'Proposal';
|
|
1365
|
+
queueTxHash?: any | null;
|
|
1366
|
+
createTxHash?: any | null;
|
|
1367
|
+
cancelTxHash?: any | null;
|
|
1368
|
+
executeTxHash?: any | null;
|
|
1369
|
+
id: string;
|
|
1370
|
+
proposer: any;
|
|
1371
|
+
proposalId: any;
|
|
1372
|
+
description: string;
|
|
1373
|
+
status: ProposalStatus;
|
|
1374
|
+
createdAt: any;
|
|
1375
|
+
createdAtBlock: any;
|
|
1376
|
+
unverifiedForumLink?: string | null;
|
|
1377
|
+
quorum?: any | null;
|
|
1378
|
+
succeededAt?: any | null;
|
|
1379
|
+
voteStartAt: any;
|
|
1380
|
+
voteEndAt: any;
|
|
1381
|
+
queueStart?: any | null;
|
|
1382
|
+
queueEnd?: any | null;
|
|
1383
|
+
canceledAt?: any | null;
|
|
1384
|
+
executedAt?: any | null;
|
|
1385
|
+
title?: string | null;
|
|
1386
|
+
topics: Array<string>;
|
|
1387
|
+
executableCalls: Array<{
|
|
1388
|
+
__typename?: 'ExecutableCall';
|
|
1389
|
+
id: string;
|
|
1390
|
+
target: any;
|
|
1391
|
+
value: any;
|
|
1392
|
+
calldata: any;
|
|
1393
|
+
}>;
|
|
1394
|
+
timelock?: {
|
|
1395
|
+
__typename?: 'Timelock';
|
|
1396
|
+
id: any;
|
|
1397
|
+
} | null;
|
|
1398
|
+
votes: Array<{
|
|
1399
|
+
__typename?: 'Vote';
|
|
1400
|
+
id: any;
|
|
1401
|
+
voter: any;
|
|
1402
|
+
weight: any;
|
|
1403
|
+
support: VoteSupportType;
|
|
1404
|
+
timestamp: any;
|
|
1405
|
+
reason: string;
|
|
1406
|
+
}>;
|
|
1407
|
+
pollResult: {
|
|
1408
|
+
__typename?: 'PollResult';
|
|
1409
|
+
for: any;
|
|
1410
|
+
forVotersCount: number;
|
|
1411
|
+
forPercentage: string;
|
|
1412
|
+
against: any;
|
|
1413
|
+
againstVotersCount: number;
|
|
1414
|
+
againstPercentage: string;
|
|
1415
|
+
abstain: any;
|
|
1416
|
+
abstainVotersCount: number;
|
|
1417
|
+
abstainPercentage: string;
|
|
1418
|
+
total: any;
|
|
1419
|
+
totalVotersCount: number;
|
|
1420
|
+
totalTowardsQuorum: any;
|
|
1421
|
+
};
|
|
1422
|
+
};
|
|
1423
|
+
type GetProposalVotesQueryVariables = Exact<{
|
|
1424
|
+
proposalId: Scalars['String']['input'];
|
|
1425
|
+
orderBy?: InputMaybe<Vote_OrderBy>;
|
|
1426
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1427
|
+
limit: Scalars['Int']['input'];
|
|
1428
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1429
|
+
}>;
|
|
1430
|
+
type GetProposalVotesQuery = {
|
|
1431
|
+
__typename?: 'Query';
|
|
1432
|
+
votes: Array<{
|
|
1433
|
+
__typename?: 'Vote';
|
|
1434
|
+
id: any;
|
|
1435
|
+
voter: any;
|
|
1436
|
+
weight: any;
|
|
1437
|
+
support: VoteSupportType;
|
|
1438
|
+
timestamp: any;
|
|
1439
|
+
reason: string;
|
|
1440
|
+
}>;
|
|
1441
|
+
};
|
|
1442
|
+
type GetProposalsQueryVariables = Exact<{
|
|
1443
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1444
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1445
|
+
where?: InputMaybe<Proposal_Filter>;
|
|
1446
|
+
orderBy?: InputMaybe<Proposal_OrderBy>;
|
|
1447
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1448
|
+
}>;
|
|
1449
|
+
type GetProposalsQuery = {
|
|
1450
|
+
__typename?: 'Query';
|
|
1451
|
+
proposals: Array<{
|
|
1452
|
+
__typename?: 'Proposal';
|
|
1453
|
+
id: string;
|
|
1454
|
+
proposer: any;
|
|
1455
|
+
proposalId: any;
|
|
1456
|
+
description: string;
|
|
1457
|
+
status: ProposalStatus;
|
|
1458
|
+
createdAt: any;
|
|
1459
|
+
createdAtBlock: any;
|
|
1460
|
+
unverifiedForumLink?: string | null;
|
|
1461
|
+
quorum?: any | null;
|
|
1462
|
+
succeededAt?: any | null;
|
|
1463
|
+
voteStartAt: any;
|
|
1464
|
+
voteEndAt: any;
|
|
1465
|
+
queueStart?: any | null;
|
|
1466
|
+
queueEnd?: any | null;
|
|
1467
|
+
canceledAt?: any | null;
|
|
1468
|
+
executedAt?: any | null;
|
|
1469
|
+
title?: string | null;
|
|
1470
|
+
topics: Array<string>;
|
|
1471
|
+
timelock?: {
|
|
1472
|
+
__typename?: 'Timelock';
|
|
1473
|
+
id: any;
|
|
1474
|
+
} | null;
|
|
1475
|
+
pollResult: {
|
|
1476
|
+
__typename?: 'PollResult';
|
|
1477
|
+
for: any;
|
|
1478
|
+
forVotersCount: number;
|
|
1479
|
+
forPercentage: string;
|
|
1480
|
+
against: any;
|
|
1481
|
+
againstVotersCount: number;
|
|
1482
|
+
againstPercentage: string;
|
|
1483
|
+
abstain: any;
|
|
1484
|
+
abstainVotersCount: number;
|
|
1485
|
+
abstainPercentage: string;
|
|
1486
|
+
total: any;
|
|
1487
|
+
totalVotersCount: number;
|
|
1488
|
+
totalTowardsQuorum: any;
|
|
1489
|
+
};
|
|
1490
|
+
}>;
|
|
1491
|
+
};
|
|
1492
|
+
type SearchProposalsQueryVariables = Exact<{
|
|
1493
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1494
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1495
|
+
where?: InputMaybe<Proposal_Filter>;
|
|
1496
|
+
text: Scalars['String']['input'];
|
|
1497
|
+
}>;
|
|
1498
|
+
type SearchProposalsQuery = {
|
|
1499
|
+
__typename?: 'Query';
|
|
1500
|
+
proposals: Array<{
|
|
1501
|
+
__typename?: 'Proposal';
|
|
1502
|
+
id: string;
|
|
1503
|
+
proposer: any;
|
|
1504
|
+
proposalId: any;
|
|
1505
|
+
description: string;
|
|
1506
|
+
status: ProposalStatus;
|
|
1507
|
+
createdAt: any;
|
|
1508
|
+
createdAtBlock: any;
|
|
1509
|
+
unverifiedForumLink?: string | null;
|
|
1510
|
+
quorum?: any | null;
|
|
1511
|
+
succeededAt?: any | null;
|
|
1512
|
+
voteStartAt: any;
|
|
1513
|
+
voteEndAt: any;
|
|
1514
|
+
queueStart?: any | null;
|
|
1515
|
+
queueEnd?: any | null;
|
|
1516
|
+
canceledAt?: any | null;
|
|
1517
|
+
executedAt?: any | null;
|
|
1518
|
+
title?: string | null;
|
|
1519
|
+
topics: Array<string>;
|
|
1520
|
+
timelock?: {
|
|
1521
|
+
__typename?: 'Timelock';
|
|
1522
|
+
id: any;
|
|
1523
|
+
} | null;
|
|
1524
|
+
pollResult: {
|
|
1525
|
+
__typename?: 'PollResult';
|
|
1526
|
+
for: any;
|
|
1527
|
+
forVotersCount: number;
|
|
1528
|
+
forPercentage: string;
|
|
1529
|
+
against: any;
|
|
1530
|
+
againstVotersCount: number;
|
|
1531
|
+
againstPercentage: string;
|
|
1532
|
+
abstain: any;
|
|
1533
|
+
abstainVotersCount: number;
|
|
1534
|
+
abstainPercentage: string;
|
|
1535
|
+
total: any;
|
|
1536
|
+
totalVotersCount: number;
|
|
1537
|
+
totalTowardsQuorum: any;
|
|
1538
|
+
};
|
|
1539
|
+
}>;
|
|
1540
|
+
};
|
|
1541
|
+
type GetProposalQueryVariables = Exact<{
|
|
1542
|
+
id: Scalars['ID']['input'];
|
|
1543
|
+
}>;
|
|
1544
|
+
type GetProposalQuery = {
|
|
1545
|
+
__typename?: 'Query';
|
|
1546
|
+
proposal?: {
|
|
1547
|
+
__typename?: 'Proposal';
|
|
1548
|
+
queueTxHash?: any | null;
|
|
1549
|
+
createTxHash?: any | null;
|
|
1550
|
+
cancelTxHash?: any | null;
|
|
1551
|
+
executeTxHash?: any | null;
|
|
1552
|
+
id: string;
|
|
1553
|
+
proposer: any;
|
|
1554
|
+
proposalId: any;
|
|
1555
|
+
description: string;
|
|
1556
|
+
status: ProposalStatus;
|
|
1557
|
+
createdAt: any;
|
|
1558
|
+
createdAtBlock: any;
|
|
1559
|
+
unverifiedForumLink?: string | null;
|
|
1560
|
+
quorum?: any | null;
|
|
1561
|
+
succeededAt?: any | null;
|
|
1562
|
+
voteStartAt: any;
|
|
1563
|
+
voteEndAt: any;
|
|
1564
|
+
queueStart?: any | null;
|
|
1565
|
+
queueEnd?: any | null;
|
|
1566
|
+
canceledAt?: any | null;
|
|
1567
|
+
executedAt?: any | null;
|
|
1568
|
+
title?: string | null;
|
|
1569
|
+
topics: Array<string>;
|
|
1570
|
+
executableCalls: Array<{
|
|
1571
|
+
__typename?: 'ExecutableCall';
|
|
1572
|
+
id: string;
|
|
1573
|
+
target: any;
|
|
1574
|
+
value: any;
|
|
1575
|
+
calldata: any;
|
|
1576
|
+
}>;
|
|
1577
|
+
timelock?: {
|
|
1578
|
+
__typename?: 'Timelock';
|
|
1579
|
+
id: any;
|
|
1580
|
+
} | null;
|
|
1581
|
+
votes: Array<{
|
|
1582
|
+
__typename?: 'Vote';
|
|
1583
|
+
id: any;
|
|
1584
|
+
voter: any;
|
|
1585
|
+
weight: any;
|
|
1586
|
+
support: VoteSupportType;
|
|
1587
|
+
timestamp: any;
|
|
1588
|
+
reason: string;
|
|
1589
|
+
}>;
|
|
1590
|
+
pollResult: {
|
|
1591
|
+
__typename?: 'PollResult';
|
|
1592
|
+
for: any;
|
|
1593
|
+
forVotersCount: number;
|
|
1594
|
+
forPercentage: string;
|
|
1595
|
+
against: any;
|
|
1596
|
+
againstVotersCount: number;
|
|
1597
|
+
againstPercentage: string;
|
|
1598
|
+
abstain: any;
|
|
1599
|
+
abstainVotersCount: number;
|
|
1600
|
+
abstainPercentage: string;
|
|
1601
|
+
total: any;
|
|
1602
|
+
totalVotersCount: number;
|
|
1603
|
+
totalTowardsQuorum: any;
|
|
1604
|
+
};
|
|
1605
|
+
} | null;
|
|
1606
|
+
};
|
|
1607
|
+
declare const ProposalSelection: _apollo_client.DocumentNode;
|
|
1608
|
+
declare const ExecutableCallSubset: _apollo_client.DocumentNode;
|
|
1609
|
+
declare const ProposalVote: _apollo_client.DocumentNode;
|
|
1610
|
+
declare const ProposalWithVotes: _apollo_client.DocumentNode;
|
|
1611
|
+
declare const GetProposalVotes: _apollo_client.DocumentNode;
|
|
1612
|
+
declare const GetProposals: _apollo_client.DocumentNode;
|
|
1613
|
+
declare const SearchProposals: _apollo_client.DocumentNode;
|
|
1614
|
+
declare const GetProposal: _apollo_client.DocumentNode;
|
|
1615
|
+
interface PossibleTypesResultData {
|
|
1616
|
+
possibleTypes: {
|
|
1617
|
+
[key: string]: string[];
|
|
1618
|
+
};
|
|
1619
|
+
}
|
|
1620
|
+
declare const result: PossibleTypesResultData;
|
|
1621
|
+
|
|
1622
|
+
export { Aggregation_Interval, type BlockChangedFilter, type Block_Height, type Exact, type ExecutableCall, ExecutableCallSubset, type ExecutableCallSubsetFragment, type ExecutableCall_Filter, ExecutableCall_OrderBy, GetProposal, type GetProposalQuery, type GetProposalQueryVariables, GetProposalVotes, type GetProposalVotesQuery, type GetProposalVotesQueryVariables, GetProposals, type GetProposalsQuery, type GetProposalsQueryVariables, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, OrderDirection, type PollResult, type PollResult_Filter, PollResult_OrderBy, type PossibleTypesResultData, type Proposal, type ProposalExecutableCallsArgs, ProposalSelection, type ProposalSelectionFragment, ProposalStatus, ProposalVote, type ProposalVoteFragment, type ProposalVotesArgs, ProposalWithVotes, type ProposalWithVotesFragment, type Proposal_Filter, Proposal_OrderBy, type Query, type QueryExecutableCallArgs, type QueryExecutableCallsArgs, type QueryPollResultArgs, type QueryPollResultsArgs, type QueryProposalArgs, type QueryProposalSearchArgs, type QueryProposalsArgs, type QueryTimelockArgs, type QueryTimelocksArgs, type QueryVoteArgs, type QueryVotesArgs, type Query_MetaArgs, type Scalars, SearchProposals, type SearchProposalsQuery, type SearchProposalsQueryVariables, type Subscription, type SubscriptionExecutableCallArgs, type SubscriptionExecutableCallsArgs, type SubscriptionPollResultArgs, type SubscriptionPollResultsArgs, type SubscriptionProposalArgs, type SubscriptionProposalsArgs, type SubscriptionTimelockArgs, type SubscriptionTimelocksArgs, type SubscriptionVoteArgs, type SubscriptionVotesArgs, type Subscription_MetaArgs, type Timelock, type Timelock_Filter, Timelock_OrderBy, type Vote, VoteSupportType, type Vote_Filter, Vote_OrderBy, type _Block_, type _Meta_, _SubgraphErrorPolicy_, result as default };
|