@ludo.ninja/api 2.8.28 → 2.8.30
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/build/config/index.js +4 -4
- package/build/graphql_tools/__generated__/adminHost/schema.d.ts +1434 -0
- package/build/graphql_tools/__generated__/adminHost/schema.js +688 -0
- package/build/graphql_tools/__generated__/assetsHost/schema.d.ts +392 -0
- package/build/graphql_tools/__generated__/assetsHost/schema.js +80 -0
- package/build/graphql_tools/__generated__/authHost/schema.d.ts +238 -0
- package/build/graphql_tools/__generated__/authHost/schema.js +85 -0
- package/build/graphql_tools/__generated__/collectionsHost/schema.d.ts +455 -0
- package/build/graphql_tools/__generated__/collectionsHost/schema.js +80 -0
- package/build/graphql_tools/__generated__/experiencesHost/schema.d.ts +356 -0
- package/build/graphql_tools/__generated__/experiencesHost/schema.js +191 -0
- package/build/graphql_tools/__generated__/extensionHost/schema.d.ts +808 -0
- package/build/graphql_tools/__generated__/extensionHost/schema.js +449 -0
- package/build/graphql_tools/__generated__/galleriesHost/schema.d.ts +794 -0
- package/build/graphql_tools/__generated__/galleriesHost/schema.js +575 -0
- package/build/graphql_tools/__generated__/identityHost/schema.d.ts +1205 -0
- package/build/graphql_tools/__generated__/identityHost/schema.js +757 -0
- package/build/graphql_tools/__generated__/mediasHost/schema.d.ts +242 -0
- package/build/graphql_tools/__generated__/mediasHost/schema.js +110 -0
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.d.ts +486 -0
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.js +148 -0
- package/build/graphql_tools/__generated__/preferencesHost/schema.d.ts +604 -0
- package/build/graphql_tools/__generated__/preferencesHost/schema.js +411 -0
- package/build/graphql_tools/__generated__/schema.d.ts +1 -0
- package/build/graphql_tools/__generated__/searchHost/schema.d.ts +1304 -0
- package/build/graphql_tools/__generated__/searchHost/schema.js +1191 -0
- package/build/hosts/index.d.ts +0 -3
- package/build/hosts/index.js +1 -4
- package/build/index.d.ts +13 -2
- package/build/index.js +25 -3
- package/package.json +1 -1
- package/src/config/index.ts +50 -50
- package/src/graphql_tools/__generated__/adminHost/schema.ts +1814 -0
- package/src/graphql_tools/__generated__/assetsHost/schema.ts +482 -0
- package/src/graphql_tools/__generated__/authHost/schema.ts +317 -0
- package/src/graphql_tools/__generated__/collectionsHost/schema.ts +554 -0
- package/src/graphql_tools/__generated__/experiencesHost/schema.ts +478 -0
- package/src/graphql_tools/__generated__/extensionHost/schema.ts +1074 -0
- package/src/graphql_tools/__generated__/galleriesHost/schema.ts +1090 -0
- package/src/graphql_tools/__generated__/identityHost/schema.ts +1584 -0
- package/src/graphql_tools/__generated__/mediasHost/schema.ts +333 -0
- package/src/graphql_tools/__generated__/opportunitiesHost/schema.ts +629 -0
- package/src/graphql_tools/__generated__/preferencesHost/schema.ts +772 -0
- package/src/graphql_tools/__generated__/schema.ts +1 -0
- package/src/graphql_tools/__generated__/searchHost/schema.ts +2137 -0
- package/src/hosts/index.ts +0 -6
- package/src/index.ts +29 -2
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -0,0 +1,808 @@
|
|
|
1
|
+
import { GraphQLResolveInfo, GraphQLScalarType, GraphQLScalarTypeConfig } from 'graphql';
|
|
2
|
+
import * as Apollo from '@apollo/client';
|
|
3
|
+
export type Maybe<T> = T | null;
|
|
4
|
+
export type Exact<T extends {
|
|
5
|
+
[key: string]: unknown;
|
|
6
|
+
}> = {
|
|
7
|
+
[K in keyof T]: T[K];
|
|
8
|
+
};
|
|
9
|
+
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
10
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
11
|
+
};
|
|
12
|
+
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
13
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
14
|
+
};
|
|
15
|
+
export type RequireFields<T, K extends keyof T> = Omit<T, K> & {
|
|
16
|
+
[P in K]-?: NonNullable<T[P]>;
|
|
17
|
+
};
|
|
18
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
19
|
+
export type Scalars = {
|
|
20
|
+
ID: string;
|
|
21
|
+
String: string;
|
|
22
|
+
Boolean: boolean;
|
|
23
|
+
Int: number;
|
|
24
|
+
Float: number;
|
|
25
|
+
/** A 64-bit signed integer */
|
|
26
|
+
Long: any;
|
|
27
|
+
};
|
|
28
|
+
export type IAssetData = {
|
|
29
|
+
assetId: Scalars['String'];
|
|
30
|
+
rank?: Maybe<Scalars['Float']>;
|
|
31
|
+
};
|
|
32
|
+
export type IBrand = {
|
|
33
|
+
brandId: Scalars['ID'];
|
|
34
|
+
name: Scalars['String'];
|
|
35
|
+
matchingWords: Array<Maybe<Scalars['String']>>;
|
|
36
|
+
description?: Maybe<Scalars['String']>;
|
|
37
|
+
industry?: Maybe<Scalars['String']>;
|
|
38
|
+
link?: Maybe<Scalars['String']>;
|
|
39
|
+
media?: Maybe<Scalars['String']>;
|
|
40
|
+
};
|
|
41
|
+
export type ICategory = {
|
|
42
|
+
categoryId: Scalars['ID'];
|
|
43
|
+
name: Scalars['String'];
|
|
44
|
+
matchingWords: Array<Maybe<Scalars['String']>>;
|
|
45
|
+
};
|
|
46
|
+
export type ICollectionData = {
|
|
47
|
+
collectionId: Scalars['String'];
|
|
48
|
+
title?: Maybe<Scalars['String']>;
|
|
49
|
+
rank?: Maybe<Scalars['Float']>;
|
|
50
|
+
createdAt?: Maybe<Scalars['Long']>;
|
|
51
|
+
itemsNum?: Maybe<Scalars['String']>;
|
|
52
|
+
holdersNum?: Maybe<Scalars['String']>;
|
|
53
|
+
floorPrice?: Maybe<Scalars['Float']>;
|
|
54
|
+
coverS3Key?: Maybe<Scalars['String']>;
|
|
55
|
+
videoCoverS3Key?: Maybe<Scalars['String']>;
|
|
56
|
+
};
|
|
57
|
+
export type ICollectionKey = {
|
|
58
|
+
blockchain: Scalars['String'];
|
|
59
|
+
contractAddress?: Maybe<Scalars['String']>;
|
|
60
|
+
tokenId?: Maybe<Scalars['String']>;
|
|
61
|
+
elrondId?: Maybe<Scalars['String']>;
|
|
62
|
+
collectionTitle?: Maybe<Scalars['String']>;
|
|
63
|
+
};
|
|
64
|
+
export type ICollectionRank = {
|
|
65
|
+
blockchain: Scalars['String'];
|
|
66
|
+
address?: Maybe<Scalars['String']>;
|
|
67
|
+
tokenId?: Maybe<Scalars['String']>;
|
|
68
|
+
id?: Maybe<Scalars['String']>;
|
|
69
|
+
collectionTitle?: Maybe<Scalars['String']>;
|
|
70
|
+
rank?: Maybe<Scalars['Float']>;
|
|
71
|
+
};
|
|
72
|
+
export type IMutation = {
|
|
73
|
+
setDummy: Scalars['String'];
|
|
74
|
+
visitPage: Array<Maybe<IOpportunity>>;
|
|
75
|
+
visitPageV2?: Maybe<IOpportunityV2>;
|
|
76
|
+
openOpportunityV2: Scalars['Boolean'];
|
|
77
|
+
hideOpportunityV2: Scalars['Boolean'];
|
|
78
|
+
clearCaches: Scalars['Boolean'];
|
|
79
|
+
};
|
|
80
|
+
export type IMutationVisitPageArgs = {
|
|
81
|
+
domain: Scalars['String'];
|
|
82
|
+
title: Scalars['String'];
|
|
83
|
+
description?: Maybe<Scalars['String']>;
|
|
84
|
+
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
85
|
+
category?: Maybe<Scalars['String']>;
|
|
86
|
+
};
|
|
87
|
+
export type IMutationVisitPageV2Args = {
|
|
88
|
+
domain: Scalars['String'];
|
|
89
|
+
title: Scalars['String'];
|
|
90
|
+
description?: Maybe<Scalars['String']>;
|
|
91
|
+
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
92
|
+
brandId?: Maybe<Scalars['String']>;
|
|
93
|
+
category?: Maybe<Scalars['String']>;
|
|
94
|
+
};
|
|
95
|
+
export type IMutationOpenOpportunityV2Args = {
|
|
96
|
+
opportunityId: Scalars['ID'];
|
|
97
|
+
};
|
|
98
|
+
export type IMutationHideOpportunityV2Args = {
|
|
99
|
+
opportunityId: Scalars['ID'];
|
|
100
|
+
};
|
|
101
|
+
export type INftData = {
|
|
102
|
+
blockchain: Scalars['String'];
|
|
103
|
+
contractAddress?: Maybe<Scalars['String']>;
|
|
104
|
+
tokenId?: Maybe<Scalars['String']>;
|
|
105
|
+
elrondId?: Maybe<Scalars['String']>;
|
|
106
|
+
collectionTitle?: Maybe<Scalars['String']>;
|
|
107
|
+
collectionData?: Maybe<ICollectionData>;
|
|
108
|
+
assetData?: Maybe<IAssetData>;
|
|
109
|
+
userRank?: Maybe<Scalars['Float']>;
|
|
110
|
+
};
|
|
111
|
+
export type INftKey = {
|
|
112
|
+
blockchain: Scalars['String'];
|
|
113
|
+
address?: Maybe<Scalars['String']>;
|
|
114
|
+
tokenId?: Maybe<Scalars['String']>;
|
|
115
|
+
id?: Maybe<Scalars['String']>;
|
|
116
|
+
};
|
|
117
|
+
export type INftRank = {
|
|
118
|
+
blockchain: Scalars['String'];
|
|
119
|
+
address?: Maybe<Scalars['String']>;
|
|
120
|
+
tokenId?: Maybe<Scalars['String']>;
|
|
121
|
+
id?: Maybe<Scalars['String']>;
|
|
122
|
+
rank?: Maybe<Scalars['Float']>;
|
|
123
|
+
};
|
|
124
|
+
export type IOpportunitiesPageV2 = {
|
|
125
|
+
currentOpportunities?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
126
|
+
similarOpportunities?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
127
|
+
};
|
|
128
|
+
export type IOpportunity = {
|
|
129
|
+
opportunityId?: Maybe<Scalars['ID']>;
|
|
130
|
+
name?: Maybe<Scalars['String']>;
|
|
131
|
+
description?: Maybe<Scalars['String']>;
|
|
132
|
+
startedAt?: Maybe<Scalars['Long']>;
|
|
133
|
+
endedAt?: Maybe<Scalars['Long']>;
|
|
134
|
+
createdAt?: Maybe<Scalars['Long']>;
|
|
135
|
+
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
136
|
+
category?: Maybe<Scalars['String']>;
|
|
137
|
+
media?: Maybe<Scalars['String']>;
|
|
138
|
+
links?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
139
|
+
ludoRankRequired?: Maybe<Scalars['Boolean']>;
|
|
140
|
+
ludoRankRequiredMin?: Maybe<Scalars['Int']>;
|
|
141
|
+
ludoRankRequiredMax?: Maybe<Scalars['Int']>;
|
|
142
|
+
rewardType?: Maybe<Scalars['String']>;
|
|
143
|
+
creatorId?: Maybe<Scalars['String']>;
|
|
144
|
+
creatorWallet?: Maybe<Scalars['String']>;
|
|
145
|
+
status?: Maybe<Scalars['String']>;
|
|
146
|
+
shareLink?: Maybe<Scalars['String']>;
|
|
147
|
+
notifiable?: Maybe<Scalars['Boolean']>;
|
|
148
|
+
brandId?: Maybe<Scalars['String']>;
|
|
149
|
+
brandName?: Maybe<Scalars['String']>;
|
|
150
|
+
brandDescription?: Maybe<Scalars['String']>;
|
|
151
|
+
brandIndustry?: Maybe<Scalars['String']>;
|
|
152
|
+
brandLink?: Maybe<Scalars['String']>;
|
|
153
|
+
brandMedia?: Maybe<Scalars['String']>;
|
|
154
|
+
};
|
|
155
|
+
export type IOpportunityV2 = {
|
|
156
|
+
opportunityId?: Maybe<Scalars['ID']>;
|
|
157
|
+
brandId?: Maybe<Scalars['String']>;
|
|
158
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
159
|
+
opportunityStatus?: Maybe<Scalars['String']>;
|
|
160
|
+
opportunityType?: Maybe<Scalars['String']>;
|
|
161
|
+
notificationType?: Maybe<Scalars['String']>;
|
|
162
|
+
name?: Maybe<Scalars['String']>;
|
|
163
|
+
description?: Maybe<Scalars['String']>;
|
|
164
|
+
brandName?: Maybe<Scalars['String']>;
|
|
165
|
+
brandDescription?: Maybe<Scalars['String']>;
|
|
166
|
+
brandMedia?: Maybe<Scalars['String']>;
|
|
167
|
+
brandUrl?: Maybe<Scalars['String']>;
|
|
168
|
+
brandIndustry?: Maybe<Scalars['String']>;
|
|
169
|
+
categoryName?: Maybe<Scalars['String']>;
|
|
170
|
+
ludoUrl?: Maybe<Scalars['String']>;
|
|
171
|
+
projectUrl?: Maybe<Scalars['String']>;
|
|
172
|
+
activeFrom?: Maybe<Scalars['Long']>;
|
|
173
|
+
activeUntil?: Maybe<Scalars['Long']>;
|
|
174
|
+
media?: Maybe<Scalars['String']>;
|
|
175
|
+
reportLink?: Maybe<Scalars['String']>;
|
|
176
|
+
shareLink?: Maybe<Scalars['String']>;
|
|
177
|
+
};
|
|
178
|
+
export type IQuery = {
|
|
179
|
+
getDummy: Scalars['String'];
|
|
180
|
+
fetchNFTData: INftData;
|
|
181
|
+
fetchCollectionsData: Array<ICollectionData>;
|
|
182
|
+
fetchNFTRanks: Array<INftRank>;
|
|
183
|
+
fetchCollectionRanks: Array<ICollectionRank>;
|
|
184
|
+
fetchWalletRanks: Array<IWalletRank>;
|
|
185
|
+
fetchExtensionBrands: Array<Maybe<IBrand>>;
|
|
186
|
+
fetchExtensionCategories: Array<Maybe<ICategory>>;
|
|
187
|
+
fetchExtensionOpportunitiesV2: IOpportunitiesPageV2;
|
|
188
|
+
};
|
|
189
|
+
export type IQueryFetchNftDataArgs = {
|
|
190
|
+
blockchain: Scalars['String'];
|
|
191
|
+
contractAddress?: Maybe<Scalars['String']>;
|
|
192
|
+
tokenId?: Maybe<Scalars['String']>;
|
|
193
|
+
elrondId?: Maybe<Scalars['String']>;
|
|
194
|
+
collectionTitle?: Maybe<Scalars['String']>;
|
|
195
|
+
};
|
|
196
|
+
export type IQueryFetchCollectionsDataArgs = {
|
|
197
|
+
collectionKeys: Array<ICollectionKey>;
|
|
198
|
+
};
|
|
199
|
+
export type IQueryFetchNftRanksArgs = {
|
|
200
|
+
nftKeys: Array<INftKey>;
|
|
201
|
+
};
|
|
202
|
+
export type IQueryFetchCollectionRanksArgs = {
|
|
203
|
+
collectionKeys: Array<ICollectionKey>;
|
|
204
|
+
};
|
|
205
|
+
export type IQueryFetchWalletRanksArgs = {
|
|
206
|
+
wallets: Array<Scalars['String']>;
|
|
207
|
+
};
|
|
208
|
+
export type IQueryFetchExtensionOpportunitiesV2Args = {
|
|
209
|
+
domain: Scalars['String'];
|
|
210
|
+
brandId?: Maybe<Scalars['String']>;
|
|
211
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
212
|
+
};
|
|
213
|
+
export type IWalletRank = {
|
|
214
|
+
wallet: Scalars['String'];
|
|
215
|
+
rank?: Maybe<Scalars['Float']>;
|
|
216
|
+
};
|
|
217
|
+
export type ResolverTypeWrapper<T> = Promise<T> | T;
|
|
218
|
+
export type ResolverWithResolve<TResult, TParent, TContext, TArgs> = {
|
|
219
|
+
resolve: ResolverFn<TResult, TParent, TContext, TArgs>;
|
|
220
|
+
};
|
|
221
|
+
export type Resolver<TResult, TParent = {}, TContext = {}, TArgs = {}> = ResolverFn<TResult, TParent, TContext, TArgs> | ResolverWithResolve<TResult, TParent, TContext, TArgs>;
|
|
222
|
+
export type ResolverFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => Promise<TResult> | TResult;
|
|
223
|
+
export type SubscriptionSubscribeFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => AsyncIterable<TResult> | Promise<AsyncIterable<TResult>>;
|
|
224
|
+
export type SubscriptionResolveFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
|
225
|
+
export interface SubscriptionSubscriberObject<TResult, TKey extends string, TParent, TContext, TArgs> {
|
|
226
|
+
subscribe: SubscriptionSubscribeFn<{
|
|
227
|
+
[key in TKey]: TResult;
|
|
228
|
+
}, TParent, TContext, TArgs>;
|
|
229
|
+
resolve?: SubscriptionResolveFn<TResult, {
|
|
230
|
+
[key in TKey]: TResult;
|
|
231
|
+
}, TContext, TArgs>;
|
|
232
|
+
}
|
|
233
|
+
export interface SubscriptionResolverObject<TResult, TParent, TContext, TArgs> {
|
|
234
|
+
subscribe: SubscriptionSubscribeFn<any, TParent, TContext, TArgs>;
|
|
235
|
+
resolve: SubscriptionResolveFn<TResult, any, TContext, TArgs>;
|
|
236
|
+
}
|
|
237
|
+
export type SubscriptionObject<TResult, TKey extends string, TParent, TContext, TArgs> = SubscriptionSubscriberObject<TResult, TKey, TParent, TContext, TArgs> | SubscriptionResolverObject<TResult, TParent, TContext, TArgs>;
|
|
238
|
+
export type SubscriptionResolver<TResult, TKey extends string, TParent = {}, TContext = {}, TArgs = {}> = ((...args: any[]) => SubscriptionObject<TResult, TKey, TParent, TContext, TArgs>) | SubscriptionObject<TResult, TKey, TParent, TContext, TArgs>;
|
|
239
|
+
export type TypeResolveFn<TTypes, TParent = {}, TContext = {}> = (parent: TParent, context: TContext, info: GraphQLResolveInfo) => Maybe<TTypes> | Promise<Maybe<TTypes>>;
|
|
240
|
+
export type IsTypeOfResolverFn<T = {}, TContext = {}> = (obj: T, context: TContext, info: GraphQLResolveInfo) => boolean | Promise<boolean>;
|
|
241
|
+
export type NextResolverFn<T> = () => Promise<T>;
|
|
242
|
+
export type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
|
243
|
+
/** Mapping between all available schema types and the resolvers types */
|
|
244
|
+
export type IResolversTypes = {
|
|
245
|
+
AssetData: ResolverTypeWrapper<IAssetData>;
|
|
246
|
+
String: ResolverTypeWrapper<Scalars['String']>;
|
|
247
|
+
Float: ResolverTypeWrapper<Scalars['Float']>;
|
|
248
|
+
Brand: ResolverTypeWrapper<IBrand>;
|
|
249
|
+
ID: ResolverTypeWrapper<Scalars['ID']>;
|
|
250
|
+
Category: ResolverTypeWrapper<ICategory>;
|
|
251
|
+
CollectionData: ResolverTypeWrapper<ICollectionData>;
|
|
252
|
+
CollectionKey: ICollectionKey;
|
|
253
|
+
CollectionRank: ResolverTypeWrapper<ICollectionRank>;
|
|
254
|
+
Long: ResolverTypeWrapper<Scalars['Long']>;
|
|
255
|
+
Mutation: ResolverTypeWrapper<{}>;
|
|
256
|
+
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
|
257
|
+
NFTData: ResolverTypeWrapper<INftData>;
|
|
258
|
+
NFTKey: INftKey;
|
|
259
|
+
NFTRank: ResolverTypeWrapper<INftRank>;
|
|
260
|
+
OpportunitiesPageV2: ResolverTypeWrapper<IOpportunitiesPageV2>;
|
|
261
|
+
Opportunity: ResolverTypeWrapper<IOpportunity>;
|
|
262
|
+
Int: ResolverTypeWrapper<Scalars['Int']>;
|
|
263
|
+
OpportunityV2: ResolverTypeWrapper<IOpportunityV2>;
|
|
264
|
+
Query: ResolverTypeWrapper<{}>;
|
|
265
|
+
WalletRank: ResolverTypeWrapper<IWalletRank>;
|
|
266
|
+
};
|
|
267
|
+
/** Mapping between all available schema types and the resolvers parents */
|
|
268
|
+
export type IResolversParentTypes = {
|
|
269
|
+
AssetData: IAssetData;
|
|
270
|
+
String: Scalars['String'];
|
|
271
|
+
Float: Scalars['Float'];
|
|
272
|
+
Brand: IBrand;
|
|
273
|
+
ID: Scalars['ID'];
|
|
274
|
+
Category: ICategory;
|
|
275
|
+
CollectionData: ICollectionData;
|
|
276
|
+
CollectionKey: ICollectionKey;
|
|
277
|
+
CollectionRank: ICollectionRank;
|
|
278
|
+
Long: Scalars['Long'];
|
|
279
|
+
Mutation: {};
|
|
280
|
+
Boolean: Scalars['Boolean'];
|
|
281
|
+
NFTData: INftData;
|
|
282
|
+
NFTKey: INftKey;
|
|
283
|
+
NFTRank: INftRank;
|
|
284
|
+
OpportunitiesPageV2: IOpportunitiesPageV2;
|
|
285
|
+
Opportunity: IOpportunity;
|
|
286
|
+
Int: Scalars['Int'];
|
|
287
|
+
OpportunityV2: IOpportunityV2;
|
|
288
|
+
Query: {};
|
|
289
|
+
WalletRank: IWalletRank;
|
|
290
|
+
};
|
|
291
|
+
export type IOneOfDirectiveArgs = {};
|
|
292
|
+
export type IOneOfDirectiveResolver<Result, Parent, ContextType = any, Args = IOneOfDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
293
|
+
export type IAssetDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['AssetData'] = IResolversParentTypes['AssetData']> = {
|
|
294
|
+
assetId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
295
|
+
rank?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
296
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
297
|
+
};
|
|
298
|
+
export type IBrandResolvers<ContextType = any, ParentType extends IResolversParentTypes['Brand'] = IResolversParentTypes['Brand']> = {
|
|
299
|
+
brandId?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
300
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
301
|
+
matchingWords?: Resolver<Array<Maybe<IResolversTypes['String']>>, ParentType, ContextType>;
|
|
302
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
303
|
+
industry?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
304
|
+
link?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
305
|
+
media?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
306
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
307
|
+
};
|
|
308
|
+
export type ICategoryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Category'] = IResolversParentTypes['Category']> = {
|
|
309
|
+
categoryId?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
310
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
311
|
+
matchingWords?: Resolver<Array<Maybe<IResolversTypes['String']>>, ParentType, ContextType>;
|
|
312
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
313
|
+
};
|
|
314
|
+
export type ICollectionDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['CollectionData'] = IResolversParentTypes['CollectionData']> = {
|
|
315
|
+
collectionId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
316
|
+
title?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
317
|
+
rank?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
318
|
+
createdAt?: Resolver<Maybe<IResolversTypes['Long']>, ParentType, ContextType>;
|
|
319
|
+
itemsNum?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
320
|
+
holdersNum?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
321
|
+
floorPrice?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
322
|
+
coverS3Key?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
323
|
+
videoCoverS3Key?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
324
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
325
|
+
};
|
|
326
|
+
export type ICollectionRankResolvers<ContextType = any, ParentType extends IResolversParentTypes['CollectionRank'] = IResolversParentTypes['CollectionRank']> = {
|
|
327
|
+
blockchain?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
328
|
+
address?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
329
|
+
tokenId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
330
|
+
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
331
|
+
collectionTitle?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
332
|
+
rank?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
333
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
334
|
+
};
|
|
335
|
+
export interface ILongScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Long'], any> {
|
|
336
|
+
name: 'Long';
|
|
337
|
+
}
|
|
338
|
+
export type IMutationResolvers<ContextType = any, ParentType extends IResolversParentTypes['Mutation'] = IResolversParentTypes['Mutation']> = {
|
|
339
|
+
setDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
340
|
+
visitPage?: Resolver<Array<Maybe<IResolversTypes['Opportunity']>>, ParentType, ContextType, RequireFields<IMutationVisitPageArgs, 'domain' | 'title'>>;
|
|
341
|
+
visitPageV2?: Resolver<Maybe<IResolversTypes['OpportunityV2']>, ParentType, ContextType, RequireFields<IMutationVisitPageV2Args, 'domain' | 'title'>>;
|
|
342
|
+
openOpportunityV2?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationOpenOpportunityV2Args, 'opportunityId'>>;
|
|
343
|
+
hideOpportunityV2?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationHideOpportunityV2Args, 'opportunityId'>>;
|
|
344
|
+
clearCaches?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
|
345
|
+
};
|
|
346
|
+
export type INftDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['NFTData'] = IResolversParentTypes['NFTData']> = {
|
|
347
|
+
blockchain?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
348
|
+
contractAddress?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
349
|
+
tokenId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
350
|
+
elrondId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
351
|
+
collectionTitle?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
352
|
+
collectionData?: Resolver<Maybe<IResolversTypes['CollectionData']>, ParentType, ContextType>;
|
|
353
|
+
assetData?: Resolver<Maybe<IResolversTypes['AssetData']>, ParentType, ContextType>;
|
|
354
|
+
userRank?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
355
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
356
|
+
};
|
|
357
|
+
export type INftRankResolvers<ContextType = any, ParentType extends IResolversParentTypes['NFTRank'] = IResolversParentTypes['NFTRank']> = {
|
|
358
|
+
blockchain?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
359
|
+
address?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
360
|
+
tokenId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
361
|
+
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
362
|
+
rank?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
363
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
364
|
+
};
|
|
365
|
+
export type IOpportunitiesPageV2Resolvers<ContextType = any, ParentType extends IResolversParentTypes['OpportunitiesPageV2'] = IResolversParentTypes['OpportunitiesPageV2']> = {
|
|
366
|
+
currentOpportunities?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType>;
|
|
367
|
+
similarOpportunities?: Resolver<Maybe<Array<Maybe<IResolversTypes['OpportunityV2']>>>, ParentType, ContextType>;
|
|
368
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
369
|
+
};
|
|
370
|
+
export type IOpportunityResolvers<ContextType = any, ParentType extends IResolversParentTypes['Opportunity'] = IResolversParentTypes['Opportunity']> = {
|
|
371
|
+
opportunityId?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
|
372
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
373
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
374
|
+
startedAt?: Resolver<Maybe<IResolversTypes['Long']>, ParentType, ContextType>;
|
|
375
|
+
endedAt?: Resolver<Maybe<IResolversTypes['Long']>, ParentType, ContextType>;
|
|
376
|
+
createdAt?: Resolver<Maybe<IResolversTypes['Long']>, ParentType, ContextType>;
|
|
377
|
+
tags?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
378
|
+
category?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
379
|
+
media?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
380
|
+
links?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
381
|
+
ludoRankRequired?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
382
|
+
ludoRankRequiredMin?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
383
|
+
ludoRankRequiredMax?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
384
|
+
rewardType?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
385
|
+
creatorId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
386
|
+
creatorWallet?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
387
|
+
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
388
|
+
shareLink?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
389
|
+
notifiable?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
390
|
+
brandId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
391
|
+
brandName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
392
|
+
brandDescription?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
393
|
+
brandIndustry?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
394
|
+
brandLink?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
395
|
+
brandMedia?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
396
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
397
|
+
};
|
|
398
|
+
export type IOpportunityV2Resolvers<ContextType = any, ParentType extends IResolversParentTypes['OpportunityV2'] = IResolversParentTypes['OpportunityV2']> = {
|
|
399
|
+
opportunityId?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
|
400
|
+
brandId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
401
|
+
categoryId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
402
|
+
opportunityStatus?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
403
|
+
opportunityType?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
404
|
+
notificationType?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
405
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
406
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
407
|
+
brandName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
408
|
+
brandDescription?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
409
|
+
brandMedia?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
410
|
+
brandUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
411
|
+
brandIndustry?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
412
|
+
categoryName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
413
|
+
ludoUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
414
|
+
projectUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
415
|
+
activeFrom?: Resolver<Maybe<IResolversTypes['Long']>, ParentType, ContextType>;
|
|
416
|
+
activeUntil?: Resolver<Maybe<IResolversTypes['Long']>, ParentType, ContextType>;
|
|
417
|
+
media?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
418
|
+
reportLink?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
419
|
+
shareLink?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
420
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
421
|
+
};
|
|
422
|
+
export type IQueryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
|
|
423
|
+
getDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
424
|
+
fetchNFTData?: Resolver<IResolversTypes['NFTData'], ParentType, ContextType, RequireFields<IQueryFetchNftDataArgs, 'blockchain'>>;
|
|
425
|
+
fetchCollectionsData?: Resolver<Array<IResolversTypes['CollectionData']>, ParentType, ContextType, RequireFields<IQueryFetchCollectionsDataArgs, 'collectionKeys'>>;
|
|
426
|
+
fetchNFTRanks?: Resolver<Array<IResolversTypes['NFTRank']>, ParentType, ContextType, RequireFields<IQueryFetchNftRanksArgs, 'nftKeys'>>;
|
|
427
|
+
fetchCollectionRanks?: Resolver<Array<IResolversTypes['CollectionRank']>, ParentType, ContextType, RequireFields<IQueryFetchCollectionRanksArgs, 'collectionKeys'>>;
|
|
428
|
+
fetchWalletRanks?: Resolver<Array<IResolversTypes['WalletRank']>, ParentType, ContextType, RequireFields<IQueryFetchWalletRanksArgs, 'wallets'>>;
|
|
429
|
+
fetchExtensionBrands?: Resolver<Array<Maybe<IResolversTypes['Brand']>>, ParentType, ContextType>;
|
|
430
|
+
fetchExtensionCategories?: Resolver<Array<Maybe<IResolversTypes['Category']>>, ParentType, ContextType>;
|
|
431
|
+
fetchExtensionOpportunitiesV2?: Resolver<IResolversTypes['OpportunitiesPageV2'], ParentType, ContextType, RequireFields<IQueryFetchExtensionOpportunitiesV2Args, 'domain'>>;
|
|
432
|
+
};
|
|
433
|
+
export type IWalletRankResolvers<ContextType = any, ParentType extends IResolversParentTypes['WalletRank'] = IResolversParentTypes['WalletRank']> = {
|
|
434
|
+
wallet?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
435
|
+
rank?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
436
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
437
|
+
};
|
|
438
|
+
export type IResolvers<ContextType = any> = {
|
|
439
|
+
AssetData?: IAssetDataResolvers<ContextType>;
|
|
440
|
+
Brand?: IBrandResolvers<ContextType>;
|
|
441
|
+
Category?: ICategoryResolvers<ContextType>;
|
|
442
|
+
CollectionData?: ICollectionDataResolvers<ContextType>;
|
|
443
|
+
CollectionRank?: ICollectionRankResolvers<ContextType>;
|
|
444
|
+
Long?: GraphQLScalarType;
|
|
445
|
+
Mutation?: IMutationResolvers<ContextType>;
|
|
446
|
+
NFTData?: INftDataResolvers<ContextType>;
|
|
447
|
+
NFTRank?: INftRankResolvers<ContextType>;
|
|
448
|
+
OpportunitiesPageV2?: IOpportunitiesPageV2Resolvers<ContextType>;
|
|
449
|
+
Opportunity?: IOpportunityResolvers<ContextType>;
|
|
450
|
+
OpportunityV2?: IOpportunityV2Resolvers<ContextType>;
|
|
451
|
+
Query?: IQueryResolvers<ContextType>;
|
|
452
|
+
WalletRank?: IWalletRankResolvers<ContextType>;
|
|
453
|
+
};
|
|
454
|
+
export type IDirectiveResolvers<ContextType = any> = {
|
|
455
|
+
oneOf?: IOneOfDirectiveResolver<any, any, ContextType>;
|
|
456
|
+
};
|
|
457
|
+
export type IHideOpportunityV2MutationVariables = Exact<{
|
|
458
|
+
opportunityId: Scalars['ID'];
|
|
459
|
+
}>;
|
|
460
|
+
export type IHideOpportunityV2Mutation = Pick<IMutation, 'hideOpportunityV2'>;
|
|
461
|
+
export type IOpenOpportunityV2MutationVariables = Exact<{
|
|
462
|
+
opportunityId: Scalars['ID'];
|
|
463
|
+
}>;
|
|
464
|
+
export type IOpenOpportunityV2Mutation = Pick<IMutation, 'openOpportunityV2'>;
|
|
465
|
+
export type IVisitPageV2MutationVariables = Exact<{
|
|
466
|
+
domain: Scalars['String'];
|
|
467
|
+
title: Scalars['String'];
|
|
468
|
+
description?: Maybe<Scalars['String']>;
|
|
469
|
+
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
470
|
+
brandId?: Maybe<Scalars['String']>;
|
|
471
|
+
category?: Maybe<Scalars['String']>;
|
|
472
|
+
}>;
|
|
473
|
+
export type IVisitPageV2Mutation = {
|
|
474
|
+
visitPageV2?: Maybe<Pick<IOpportunityV2, 'opportunityId' | 'brandId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'brandName' | 'brandDescription' | 'brandMedia' | 'brandUrl' | 'brandIndustry' | 'categoryName' | 'description' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'media' | 'reportLink' | 'shareLink'>>;
|
|
475
|
+
};
|
|
476
|
+
export type IFetchCollectionRanksQueryVariables = Exact<{
|
|
477
|
+
collectionKeys: Array<ICollectionKey>;
|
|
478
|
+
}>;
|
|
479
|
+
export type IFetchCollectionRanksQuery = {
|
|
480
|
+
fetchCollectionRanks: Array<Pick<ICollectionRank, 'blockchain' | 'address' | 'tokenId' | 'id' | 'collectionTitle' | 'rank'>>;
|
|
481
|
+
};
|
|
482
|
+
export type IFetchExtensionBrandsQueryVariables = Exact<{
|
|
483
|
+
[key: string]: never;
|
|
484
|
+
}>;
|
|
485
|
+
export type IFetchExtensionBrandsQuery = {
|
|
486
|
+
fetchExtensionBrands: Array<Maybe<Pick<IBrand, 'brandId' | 'name' | 'matchingWords' | 'description' | 'industry' | 'link' | 'media'>>>;
|
|
487
|
+
};
|
|
488
|
+
export type IFetchExtensionCategoriesQueryVariables = Exact<{
|
|
489
|
+
[key: string]: never;
|
|
490
|
+
}>;
|
|
491
|
+
export type IFetchExtensionCategoriesQuery = {
|
|
492
|
+
fetchExtensionCategories: Array<Maybe<Pick<ICategory, 'categoryId' | 'name' | 'matchingWords'>>>;
|
|
493
|
+
};
|
|
494
|
+
export type IFetchExtensionOpportunitiesV2QueryVariables = Exact<{
|
|
495
|
+
domain: Scalars['String'];
|
|
496
|
+
brandId?: Maybe<Scalars['String']>;
|
|
497
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
498
|
+
}>;
|
|
499
|
+
export type IFetchExtensionOpportunitiesV2Query = {
|
|
500
|
+
fetchExtensionOpportunitiesV2: {
|
|
501
|
+
currentOpportunities?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'brandId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'brandName' | 'brandDescription' | 'brandMedia' | 'brandUrl' | 'brandIndustry' | 'categoryName' | 'description' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'media' | 'reportLink' | 'shareLink'>>>>;
|
|
502
|
+
similarOpportunities?: Maybe<Array<Maybe<Pick<IOpportunityV2, 'opportunityId' | 'brandId' | 'categoryId' | 'opportunityStatus' | 'opportunityType' | 'notificationType' | 'name' | 'brandName' | 'brandDescription' | 'brandMedia' | 'brandUrl' | 'brandIndustry' | 'categoryName' | 'description' | 'ludoUrl' | 'projectUrl' | 'activeFrom' | 'activeUntil' | 'media' | 'reportLink' | 'shareLink'>>>>;
|
|
503
|
+
};
|
|
504
|
+
};
|
|
505
|
+
export type IFetchNftDataQueryVariables = Exact<{
|
|
506
|
+
blockchain: Scalars['String'];
|
|
507
|
+
contractAddress?: Maybe<Scalars['String']>;
|
|
508
|
+
tokenId?: Maybe<Scalars['String']>;
|
|
509
|
+
elrondId?: Maybe<Scalars['String']>;
|
|
510
|
+
}>;
|
|
511
|
+
export type IFetchNftDataQuery = {
|
|
512
|
+
fetchNFTData: (Pick<INftData, 'blockchain' | 'contractAddress' | 'tokenId' | 'elrondId' | 'userRank'> & {
|
|
513
|
+
collectionData?: Maybe<Pick<ICollectionData, 'collectionId' | 'title' | 'rank' | 'createdAt' | 'itemsNum' | 'holdersNum' | 'floorPrice'>>;
|
|
514
|
+
assetData?: Maybe<Pick<IAssetData, 'assetId' | 'rank'>>;
|
|
515
|
+
});
|
|
516
|
+
};
|
|
517
|
+
export type IFetchNftRanksQueryVariables = Exact<{
|
|
518
|
+
nftKeys: Array<INftKey>;
|
|
519
|
+
}>;
|
|
520
|
+
export type IFetchNftRanksQuery = {
|
|
521
|
+
fetchNFTRanks: Array<Pick<INftRank, 'blockchain' | 'address' | 'tokenId' | 'id' | 'rank'>>;
|
|
522
|
+
};
|
|
523
|
+
export type IFetchWalletRanksQueryVariables = Exact<{
|
|
524
|
+
wallets: Array<Scalars['String']>;
|
|
525
|
+
}>;
|
|
526
|
+
export type IFetchWalletRanksQuery = {
|
|
527
|
+
fetchWalletRanks: Array<Pick<IWalletRank, 'wallet' | 'rank'>>;
|
|
528
|
+
};
|
|
529
|
+
export declare const HideOpportunityV2Document: Apollo.DocumentNode;
|
|
530
|
+
export type IHideOpportunityV2MutationFn = Apollo.MutationFunction<IHideOpportunityV2Mutation, IHideOpportunityV2MutationVariables>;
|
|
531
|
+
/**
|
|
532
|
+
* __useHideOpportunityV2Mutation__
|
|
533
|
+
*
|
|
534
|
+
* To run a mutation, you first call `useHideOpportunityV2Mutation` within a React component and pass it any options that fit your needs.
|
|
535
|
+
* When your component renders, `useHideOpportunityV2Mutation` returns a tuple that includes:
|
|
536
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
537
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
538
|
+
*
|
|
539
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
540
|
+
*
|
|
541
|
+
* @example
|
|
542
|
+
* const [hideOpportunityV2Mutation, { data, loading, error }] = useHideOpportunityV2Mutation({
|
|
543
|
+
* variables: {
|
|
544
|
+
* opportunityId: // value for 'opportunityId'
|
|
545
|
+
* },
|
|
546
|
+
* });
|
|
547
|
+
*/
|
|
548
|
+
export declare function useHideOpportunityV2Mutation(baseOptions?: Apollo.MutationHookOptions<IHideOpportunityV2Mutation, IHideOpportunityV2MutationVariables>): Apollo.MutationTuple<IHideOpportunityV2Mutation, Exact<{
|
|
549
|
+
opportunityId: string;
|
|
550
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
551
|
+
export type HideOpportunityV2MutationHookResult = ReturnType<typeof useHideOpportunityV2Mutation>;
|
|
552
|
+
export type HideOpportunityV2MutationResult = Apollo.MutationResult<IHideOpportunityV2Mutation>;
|
|
553
|
+
export type HideOpportunityV2MutationOptions = Apollo.BaseMutationOptions<IHideOpportunityV2Mutation, IHideOpportunityV2MutationVariables>;
|
|
554
|
+
export declare const OpenOpportunityV2Document: Apollo.DocumentNode;
|
|
555
|
+
export type IOpenOpportunityV2MutationFn = Apollo.MutationFunction<IOpenOpportunityV2Mutation, IOpenOpportunityV2MutationVariables>;
|
|
556
|
+
/**
|
|
557
|
+
* __useOpenOpportunityV2Mutation__
|
|
558
|
+
*
|
|
559
|
+
* To run a mutation, you first call `useOpenOpportunityV2Mutation` within a React component and pass it any options that fit your needs.
|
|
560
|
+
* When your component renders, `useOpenOpportunityV2Mutation` returns a tuple that includes:
|
|
561
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
562
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
563
|
+
*
|
|
564
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
565
|
+
*
|
|
566
|
+
* @example
|
|
567
|
+
* const [openOpportunityV2Mutation, { data, loading, error }] = useOpenOpportunityV2Mutation({
|
|
568
|
+
* variables: {
|
|
569
|
+
* opportunityId: // value for 'opportunityId'
|
|
570
|
+
* },
|
|
571
|
+
* });
|
|
572
|
+
*/
|
|
573
|
+
export declare function useOpenOpportunityV2Mutation(baseOptions?: Apollo.MutationHookOptions<IOpenOpportunityV2Mutation, IOpenOpportunityV2MutationVariables>): Apollo.MutationTuple<IOpenOpportunityV2Mutation, Exact<{
|
|
574
|
+
opportunityId: string;
|
|
575
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
576
|
+
export type OpenOpportunityV2MutationHookResult = ReturnType<typeof useOpenOpportunityV2Mutation>;
|
|
577
|
+
export type OpenOpportunityV2MutationResult = Apollo.MutationResult<IOpenOpportunityV2Mutation>;
|
|
578
|
+
export type OpenOpportunityV2MutationOptions = Apollo.BaseMutationOptions<IOpenOpportunityV2Mutation, IOpenOpportunityV2MutationVariables>;
|
|
579
|
+
export declare const VisitPageV2Document: Apollo.DocumentNode;
|
|
580
|
+
export type IVisitPageV2MutationFn = Apollo.MutationFunction<IVisitPageV2Mutation, IVisitPageV2MutationVariables>;
|
|
581
|
+
/**
|
|
582
|
+
* __useVisitPageV2Mutation__
|
|
583
|
+
*
|
|
584
|
+
* To run a mutation, you first call `useVisitPageV2Mutation` within a React component and pass it any options that fit your needs.
|
|
585
|
+
* When your component renders, `useVisitPageV2Mutation` returns a tuple that includes:
|
|
586
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
587
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
588
|
+
*
|
|
589
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
590
|
+
*
|
|
591
|
+
* @example
|
|
592
|
+
* const [visitPageV2Mutation, { data, loading, error }] = useVisitPageV2Mutation({
|
|
593
|
+
* variables: {
|
|
594
|
+
* domain: // value for 'domain'
|
|
595
|
+
* title: // value for 'title'
|
|
596
|
+
* description: // value for 'description'
|
|
597
|
+
* tags: // value for 'tags'
|
|
598
|
+
* brandId: // value for 'brandId'
|
|
599
|
+
* category: // value for 'category'
|
|
600
|
+
* },
|
|
601
|
+
* });
|
|
602
|
+
*/
|
|
603
|
+
export declare function useVisitPageV2Mutation(baseOptions?: Apollo.MutationHookOptions<IVisitPageV2Mutation, IVisitPageV2MutationVariables>): Apollo.MutationTuple<IVisitPageV2Mutation, Exact<{
|
|
604
|
+
domain: string;
|
|
605
|
+
title: string;
|
|
606
|
+
description?: Maybe<string> | undefined;
|
|
607
|
+
tags?: Maybe<Maybe<string>[]> | undefined;
|
|
608
|
+
brandId?: Maybe<string> | undefined;
|
|
609
|
+
category?: Maybe<string> | undefined;
|
|
610
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
611
|
+
export type VisitPageV2MutationHookResult = ReturnType<typeof useVisitPageV2Mutation>;
|
|
612
|
+
export type VisitPageV2MutationResult = Apollo.MutationResult<IVisitPageV2Mutation>;
|
|
613
|
+
export type VisitPageV2MutationOptions = Apollo.BaseMutationOptions<IVisitPageV2Mutation, IVisitPageV2MutationVariables>;
|
|
614
|
+
export declare const FetchCollectionRanksDocument: Apollo.DocumentNode;
|
|
615
|
+
/**
|
|
616
|
+
* __useFetchCollectionRanksQuery__
|
|
617
|
+
*
|
|
618
|
+
* To run a query within a React component, call `useFetchCollectionRanksQuery` and pass it any options that fit your needs.
|
|
619
|
+
* When your component renders, `useFetchCollectionRanksQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
620
|
+
* you can use to render your UI.
|
|
621
|
+
*
|
|
622
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
623
|
+
*
|
|
624
|
+
* @example
|
|
625
|
+
* const { data, loading, error } = useFetchCollectionRanksQuery({
|
|
626
|
+
* variables: {
|
|
627
|
+
* collectionKeys: // value for 'collectionKeys'
|
|
628
|
+
* },
|
|
629
|
+
* });
|
|
630
|
+
*/
|
|
631
|
+
export declare function useFetchCollectionRanksQuery(baseOptions: Apollo.QueryHookOptions<IFetchCollectionRanksQuery, IFetchCollectionRanksQueryVariables>): Apollo.QueryResult<IFetchCollectionRanksQuery, Exact<{
|
|
632
|
+
collectionKeys: ICollectionKey[];
|
|
633
|
+
}>>;
|
|
634
|
+
export declare function useFetchCollectionRanksLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchCollectionRanksQuery, IFetchCollectionRanksQueryVariables>): Apollo.LazyQueryResultTuple<IFetchCollectionRanksQuery, Exact<{
|
|
635
|
+
collectionKeys: ICollectionKey[];
|
|
636
|
+
}>>;
|
|
637
|
+
export type FetchCollectionRanksQueryHookResult = ReturnType<typeof useFetchCollectionRanksQuery>;
|
|
638
|
+
export type FetchCollectionRanksLazyQueryHookResult = ReturnType<typeof useFetchCollectionRanksLazyQuery>;
|
|
639
|
+
export type FetchCollectionRanksQueryResult = Apollo.QueryResult<IFetchCollectionRanksQuery, IFetchCollectionRanksQueryVariables>;
|
|
640
|
+
export declare const FetchExtensionBrandsDocument: Apollo.DocumentNode;
|
|
641
|
+
/**
|
|
642
|
+
* __useFetchExtensionBrandsQuery__
|
|
643
|
+
*
|
|
644
|
+
* To run a query within a React component, call `useFetchExtensionBrandsQuery` and pass it any options that fit your needs.
|
|
645
|
+
* When your component renders, `useFetchExtensionBrandsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
646
|
+
* you can use to render your UI.
|
|
647
|
+
*
|
|
648
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
649
|
+
*
|
|
650
|
+
* @example
|
|
651
|
+
* const { data, loading, error } = useFetchExtensionBrandsQuery({
|
|
652
|
+
* variables: {
|
|
653
|
+
* },
|
|
654
|
+
* });
|
|
655
|
+
*/
|
|
656
|
+
export declare function useFetchExtensionBrandsQuery(baseOptions?: Apollo.QueryHookOptions<IFetchExtensionBrandsQuery, IFetchExtensionBrandsQueryVariables>): Apollo.QueryResult<IFetchExtensionBrandsQuery, Exact<{
|
|
657
|
+
[key: string]: never;
|
|
658
|
+
}>>;
|
|
659
|
+
export declare function useFetchExtensionBrandsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchExtensionBrandsQuery, IFetchExtensionBrandsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchExtensionBrandsQuery, Exact<{
|
|
660
|
+
[key: string]: never;
|
|
661
|
+
}>>;
|
|
662
|
+
export type FetchExtensionBrandsQueryHookResult = ReturnType<typeof useFetchExtensionBrandsQuery>;
|
|
663
|
+
export type FetchExtensionBrandsLazyQueryHookResult = ReturnType<typeof useFetchExtensionBrandsLazyQuery>;
|
|
664
|
+
export type FetchExtensionBrandsQueryResult = Apollo.QueryResult<IFetchExtensionBrandsQuery, IFetchExtensionBrandsQueryVariables>;
|
|
665
|
+
export declare const FetchExtensionCategoriesDocument: Apollo.DocumentNode;
|
|
666
|
+
/**
|
|
667
|
+
* __useFetchExtensionCategoriesQuery__
|
|
668
|
+
*
|
|
669
|
+
* To run a query within a React component, call `useFetchExtensionCategoriesQuery` and pass it any options that fit your needs.
|
|
670
|
+
* When your component renders, `useFetchExtensionCategoriesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
671
|
+
* you can use to render your UI.
|
|
672
|
+
*
|
|
673
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
674
|
+
*
|
|
675
|
+
* @example
|
|
676
|
+
* const { data, loading, error } = useFetchExtensionCategoriesQuery({
|
|
677
|
+
* variables: {
|
|
678
|
+
* },
|
|
679
|
+
* });
|
|
680
|
+
*/
|
|
681
|
+
export declare function useFetchExtensionCategoriesQuery(baseOptions?: Apollo.QueryHookOptions<IFetchExtensionCategoriesQuery, IFetchExtensionCategoriesQueryVariables>): Apollo.QueryResult<IFetchExtensionCategoriesQuery, Exact<{
|
|
682
|
+
[key: string]: never;
|
|
683
|
+
}>>;
|
|
684
|
+
export declare function useFetchExtensionCategoriesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchExtensionCategoriesQuery, IFetchExtensionCategoriesQueryVariables>): Apollo.LazyQueryResultTuple<IFetchExtensionCategoriesQuery, Exact<{
|
|
685
|
+
[key: string]: never;
|
|
686
|
+
}>>;
|
|
687
|
+
export type FetchExtensionCategoriesQueryHookResult = ReturnType<typeof useFetchExtensionCategoriesQuery>;
|
|
688
|
+
export type FetchExtensionCategoriesLazyQueryHookResult = ReturnType<typeof useFetchExtensionCategoriesLazyQuery>;
|
|
689
|
+
export type FetchExtensionCategoriesQueryResult = Apollo.QueryResult<IFetchExtensionCategoriesQuery, IFetchExtensionCategoriesQueryVariables>;
|
|
690
|
+
export declare const FetchExtensionOpportunitiesV2Document: Apollo.DocumentNode;
|
|
691
|
+
/**
|
|
692
|
+
* __useFetchExtensionOpportunitiesV2Query__
|
|
693
|
+
*
|
|
694
|
+
* To run a query within a React component, call `useFetchExtensionOpportunitiesV2Query` and pass it any options that fit your needs.
|
|
695
|
+
* When your component renders, `useFetchExtensionOpportunitiesV2Query` returns an object from Apollo Client that contains loading, error, and data properties
|
|
696
|
+
* you can use to render your UI.
|
|
697
|
+
*
|
|
698
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
699
|
+
*
|
|
700
|
+
* @example
|
|
701
|
+
* const { data, loading, error } = useFetchExtensionOpportunitiesV2Query({
|
|
702
|
+
* variables: {
|
|
703
|
+
* domain: // value for 'domain'
|
|
704
|
+
* brandId: // value for 'brandId'
|
|
705
|
+
* categoryId: // value for 'categoryId'
|
|
706
|
+
* },
|
|
707
|
+
* });
|
|
708
|
+
*/
|
|
709
|
+
export declare function useFetchExtensionOpportunitiesV2Query(baseOptions: Apollo.QueryHookOptions<IFetchExtensionOpportunitiesV2Query, IFetchExtensionOpportunitiesV2QueryVariables>): Apollo.QueryResult<IFetchExtensionOpportunitiesV2Query, Exact<{
|
|
710
|
+
domain: string;
|
|
711
|
+
brandId?: Maybe<string> | undefined;
|
|
712
|
+
categoryId?: Maybe<string> | undefined;
|
|
713
|
+
}>>;
|
|
714
|
+
export declare function useFetchExtensionOpportunitiesV2LazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchExtensionOpportunitiesV2Query, IFetchExtensionOpportunitiesV2QueryVariables>): Apollo.LazyQueryResultTuple<IFetchExtensionOpportunitiesV2Query, Exact<{
|
|
715
|
+
domain: string;
|
|
716
|
+
brandId?: Maybe<string> | undefined;
|
|
717
|
+
categoryId?: Maybe<string> | undefined;
|
|
718
|
+
}>>;
|
|
719
|
+
export type FetchExtensionOpportunitiesV2QueryHookResult = ReturnType<typeof useFetchExtensionOpportunitiesV2Query>;
|
|
720
|
+
export type FetchExtensionOpportunitiesV2LazyQueryHookResult = ReturnType<typeof useFetchExtensionOpportunitiesV2LazyQuery>;
|
|
721
|
+
export type FetchExtensionOpportunitiesV2QueryResult = Apollo.QueryResult<IFetchExtensionOpportunitiesV2Query, IFetchExtensionOpportunitiesV2QueryVariables>;
|
|
722
|
+
export declare const FetchNftDataDocument: Apollo.DocumentNode;
|
|
723
|
+
/**
|
|
724
|
+
* __useFetchNftDataQuery__
|
|
725
|
+
*
|
|
726
|
+
* To run a query within a React component, call `useFetchNftDataQuery` and pass it any options that fit your needs.
|
|
727
|
+
* When your component renders, `useFetchNftDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
728
|
+
* you can use to render your UI.
|
|
729
|
+
*
|
|
730
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
731
|
+
*
|
|
732
|
+
* @example
|
|
733
|
+
* const { data, loading, error } = useFetchNftDataQuery({
|
|
734
|
+
* variables: {
|
|
735
|
+
* blockchain: // value for 'blockchain'
|
|
736
|
+
* contractAddress: // value for 'contractAddress'
|
|
737
|
+
* tokenId: // value for 'tokenId'
|
|
738
|
+
* elrondId: // value for 'elrondId'
|
|
739
|
+
* },
|
|
740
|
+
* });
|
|
741
|
+
*/
|
|
742
|
+
export declare function useFetchNftDataQuery(baseOptions: Apollo.QueryHookOptions<IFetchNftDataQuery, IFetchNftDataQueryVariables>): Apollo.QueryResult<IFetchNftDataQuery, Exact<{
|
|
743
|
+
blockchain: string;
|
|
744
|
+
contractAddress?: Maybe<string> | undefined;
|
|
745
|
+
tokenId?: Maybe<string> | undefined;
|
|
746
|
+
elrondId?: Maybe<string> | undefined;
|
|
747
|
+
}>>;
|
|
748
|
+
export declare function useFetchNftDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchNftDataQuery, IFetchNftDataQueryVariables>): Apollo.LazyQueryResultTuple<IFetchNftDataQuery, Exact<{
|
|
749
|
+
blockchain: string;
|
|
750
|
+
contractAddress?: Maybe<string> | undefined;
|
|
751
|
+
tokenId?: Maybe<string> | undefined;
|
|
752
|
+
elrondId?: Maybe<string> | undefined;
|
|
753
|
+
}>>;
|
|
754
|
+
export type FetchNftDataQueryHookResult = ReturnType<typeof useFetchNftDataQuery>;
|
|
755
|
+
export type FetchNftDataLazyQueryHookResult = ReturnType<typeof useFetchNftDataLazyQuery>;
|
|
756
|
+
export type FetchNftDataQueryResult = Apollo.QueryResult<IFetchNftDataQuery, IFetchNftDataQueryVariables>;
|
|
757
|
+
export declare const FetchNftRanksDocument: Apollo.DocumentNode;
|
|
758
|
+
/**
|
|
759
|
+
* __useFetchNftRanksQuery__
|
|
760
|
+
*
|
|
761
|
+
* To run a query within a React component, call `useFetchNftRanksQuery` and pass it any options that fit your needs.
|
|
762
|
+
* When your component renders, `useFetchNftRanksQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
763
|
+
* you can use to render your UI.
|
|
764
|
+
*
|
|
765
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
766
|
+
*
|
|
767
|
+
* @example
|
|
768
|
+
* const { data, loading, error } = useFetchNftRanksQuery({
|
|
769
|
+
* variables: {
|
|
770
|
+
* nftKeys: // value for 'nftKeys'
|
|
771
|
+
* },
|
|
772
|
+
* });
|
|
773
|
+
*/
|
|
774
|
+
export declare function useFetchNftRanksQuery(baseOptions: Apollo.QueryHookOptions<IFetchNftRanksQuery, IFetchNftRanksQueryVariables>): Apollo.QueryResult<IFetchNftRanksQuery, Exact<{
|
|
775
|
+
nftKeys: INftKey[];
|
|
776
|
+
}>>;
|
|
777
|
+
export declare function useFetchNftRanksLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchNftRanksQuery, IFetchNftRanksQueryVariables>): Apollo.LazyQueryResultTuple<IFetchNftRanksQuery, Exact<{
|
|
778
|
+
nftKeys: INftKey[];
|
|
779
|
+
}>>;
|
|
780
|
+
export type FetchNftRanksQueryHookResult = ReturnType<typeof useFetchNftRanksQuery>;
|
|
781
|
+
export type FetchNftRanksLazyQueryHookResult = ReturnType<typeof useFetchNftRanksLazyQuery>;
|
|
782
|
+
export type FetchNftRanksQueryResult = Apollo.QueryResult<IFetchNftRanksQuery, IFetchNftRanksQueryVariables>;
|
|
783
|
+
export declare const FetchWalletRanksDocument: Apollo.DocumentNode;
|
|
784
|
+
/**
|
|
785
|
+
* __useFetchWalletRanksQuery__
|
|
786
|
+
*
|
|
787
|
+
* To run a query within a React component, call `useFetchWalletRanksQuery` and pass it any options that fit your needs.
|
|
788
|
+
* When your component renders, `useFetchWalletRanksQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
789
|
+
* you can use to render your UI.
|
|
790
|
+
*
|
|
791
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
792
|
+
*
|
|
793
|
+
* @example
|
|
794
|
+
* const { data, loading, error } = useFetchWalletRanksQuery({
|
|
795
|
+
* variables: {
|
|
796
|
+
* wallets: // value for 'wallets'
|
|
797
|
+
* },
|
|
798
|
+
* });
|
|
799
|
+
*/
|
|
800
|
+
export declare function useFetchWalletRanksQuery(baseOptions: Apollo.QueryHookOptions<IFetchWalletRanksQuery, IFetchWalletRanksQueryVariables>): Apollo.QueryResult<IFetchWalletRanksQuery, Exact<{
|
|
801
|
+
wallets: string[];
|
|
802
|
+
}>>;
|
|
803
|
+
export declare function useFetchWalletRanksLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchWalletRanksQuery, IFetchWalletRanksQueryVariables>): Apollo.LazyQueryResultTuple<IFetchWalletRanksQuery, Exact<{
|
|
804
|
+
wallets: string[];
|
|
805
|
+
}>>;
|
|
806
|
+
export type FetchWalletRanksQueryHookResult = ReturnType<typeof useFetchWalletRanksQuery>;
|
|
807
|
+
export type FetchWalletRanksLazyQueryHookResult = ReturnType<typeof useFetchWalletRanksLazyQuery>;
|
|
808
|
+
export type FetchWalletRanksQueryResult = Apollo.QueryResult<IFetchWalletRanksQuery, IFetchWalletRanksQueryVariables>;
|