@ludo.ninja/api 2.8.24 → 2.8.26
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__/schema.d.ts +8936 -0
- package/build/graphql_tools/__generated__/schema.js +5431 -0
- package/build/hosts/index.d.ts +3 -0
- package/build/hosts/index.js +4 -1
- package/build/index.d.ts +2 -13
- package/build/index.js +3 -25
- package/package.json +1 -1
- package/src/config/index.ts +50 -50
- package/src/graphql_tools/__generated__/schema.ts +12028 -0
- package/src/hosts/index.ts +6 -0
- package/src/index.ts +2 -29
- package/tsconfig.tsbuildinfo +1 -1
- package/build/graphql_tools/__generated__/adminHost/schema.d.ts +0 -1406
- package/build/graphql_tools/__generated__/adminHost/schema.js +0 -683
- package/build/graphql_tools/__generated__/assetsHost/schema.d.ts +0 -392
- package/build/graphql_tools/__generated__/assetsHost/schema.js +0 -80
- package/build/graphql_tools/__generated__/authHost/schema.d.ts +0 -238
- package/build/graphql_tools/__generated__/authHost/schema.js +0 -85
- package/build/graphql_tools/__generated__/collectionsHost/schema.d.ts +0 -455
- package/build/graphql_tools/__generated__/collectionsHost/schema.js +0 -80
- package/build/graphql_tools/__generated__/experiencesHost/schema.d.ts +0 -356
- package/build/graphql_tools/__generated__/experiencesHost/schema.js +0 -191
- package/build/graphql_tools/__generated__/extensionHost/schema.d.ts +0 -808
- package/build/graphql_tools/__generated__/extensionHost/schema.js +0 -449
- package/build/graphql_tools/__generated__/galleriesHost/schema.d.ts +0 -794
- package/build/graphql_tools/__generated__/galleriesHost/schema.js +0 -575
- package/build/graphql_tools/__generated__/identityHost/schema.d.ts +0 -1201
- package/build/graphql_tools/__generated__/identityHost/schema.js +0 -757
- package/build/graphql_tools/__generated__/mediasHost/schema.d.ts +0 -242
- package/build/graphql_tools/__generated__/mediasHost/schema.js +0 -110
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.d.ts +0 -486
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.js +0 -148
- package/build/graphql_tools/__generated__/preferencesHost/schema.d.ts +0 -604
- package/build/graphql_tools/__generated__/preferencesHost/schema.js +0 -411
- package/build/graphql_tools/__generated__/searchHost/schema.d.ts +0 -1304
- package/build/graphql_tools/__generated__/searchHost/schema.js +0 -1191
- package/src/graphql_tools/__generated__/adminHost/schema.ts +0 -1777
- package/src/graphql_tools/__generated__/assetsHost/schema.ts +0 -482
- package/src/graphql_tools/__generated__/authHost/schema.ts +0 -317
- package/src/graphql_tools/__generated__/collectionsHost/schema.ts +0 -554
- package/src/graphql_tools/__generated__/experiencesHost/schema.ts +0 -478
- package/src/graphql_tools/__generated__/extensionHost/schema.ts +0 -1074
- package/src/graphql_tools/__generated__/galleriesHost/schema.ts +0 -1090
- package/src/graphql_tools/__generated__/identityHost/schema.ts +0 -1580
- package/src/graphql_tools/__generated__/mediasHost/schema.ts +0 -333
- package/src/graphql_tools/__generated__/opportunitiesHost/schema.ts +0 -629
- package/src/graphql_tools/__generated__/preferencesHost/schema.ts +0 -772
- package/src/graphql_tools/__generated__/searchHost/schema.ts +0 -2137
|
@@ -1,604 +0,0 @@
|
|
|
1
|
-
import { GraphQLResolveInfo } 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
|
-
};
|
|
26
|
-
export type IExpectation = {
|
|
27
|
-
name: Scalars['String'];
|
|
28
|
-
imageUrl: Scalars['String'];
|
|
29
|
-
};
|
|
30
|
-
export type IInterest = {
|
|
31
|
-
name: Scalars['String'];
|
|
32
|
-
imageUrl: Scalars['String'];
|
|
33
|
-
};
|
|
34
|
-
export type IMutation = {
|
|
35
|
-
setDummy: Scalars['String'];
|
|
36
|
-
saveUserInterests: Scalars['Boolean'];
|
|
37
|
-
saveUserExpectations: Scalars['Boolean'];
|
|
38
|
-
};
|
|
39
|
-
export type IMutationSaveUserInterestsArgs = {
|
|
40
|
-
interests: Array<Maybe<Scalars['String']>>;
|
|
41
|
-
};
|
|
42
|
-
export type IMutationSaveUserExpectationsArgs = {
|
|
43
|
-
expectations: Array<Maybe<Scalars['String']>>;
|
|
44
|
-
};
|
|
45
|
-
/**
|
|
46
|
-
* scalar Long
|
|
47
|
-
* scalar Upload
|
|
48
|
-
*/
|
|
49
|
-
export type IQuery = {
|
|
50
|
-
getDummy: Scalars['String'];
|
|
51
|
-
fetchInterests: Array<Maybe<IInterest>>;
|
|
52
|
-
fetchExpectations: Array<Maybe<IExpectation>>;
|
|
53
|
-
fetchUserInterests: Array<Maybe<IUserInterest>>;
|
|
54
|
-
fetchUserExpectations: Array<Maybe<IUserExpectation>>;
|
|
55
|
-
fetchSortSelections: Array<Maybe<ISelection>>;
|
|
56
|
-
fetchVarietyOfAddressSelections: Array<Maybe<ISelection>>;
|
|
57
|
-
fetchCategorySelections: Array<Maybe<ISelection>>;
|
|
58
|
-
fetchBlockchainSelections: Array<Maybe<ISelection>>;
|
|
59
|
-
fetchSearchSortSelections: Array<Maybe<ISelection>>;
|
|
60
|
-
fetchSearchResultTypeSelections: Array<Maybe<ISelection>>;
|
|
61
|
-
fetchSearchResultBlockchainSelections: Array<Maybe<ISelection>>;
|
|
62
|
-
fetchSearchResultCategorySelections: Array<Maybe<ISelection>>;
|
|
63
|
-
fetchSearchResultTimeSelections: Array<Maybe<ISelection>>;
|
|
64
|
-
fetchSearchResultStatusSelections: Array<Maybe<ISelection>>;
|
|
65
|
-
fetchSetsSearchResultTypeSelections: Array<Maybe<ISelection>>;
|
|
66
|
-
fetchSearchResultSelections: ISearchResultSelectionsPage;
|
|
67
|
-
};
|
|
68
|
-
export type ISearchResultSelectionsPage = {
|
|
69
|
-
typeSelections: Array<Maybe<ISelection>>;
|
|
70
|
-
blockchainSelections: Array<Maybe<ISelection>>;
|
|
71
|
-
categorySelections: Array<Maybe<ISelection>>;
|
|
72
|
-
timeSelections: Array<Maybe<ISelection>>;
|
|
73
|
-
statusSelections: Array<Maybe<ISelection>>;
|
|
74
|
-
};
|
|
75
|
-
export type ISelection = {
|
|
76
|
-
name: Scalars['String'];
|
|
77
|
-
ordering: Scalars['Int'];
|
|
78
|
-
label: Scalars['String'];
|
|
79
|
-
};
|
|
80
|
-
export type IUserExpectation = {
|
|
81
|
-
userId: Scalars['String'];
|
|
82
|
-
name: Scalars['String'];
|
|
83
|
-
imageUrl: Scalars['String'];
|
|
84
|
-
};
|
|
85
|
-
export type IUserInterest = {
|
|
86
|
-
userId: Scalars['String'];
|
|
87
|
-
name: Scalars['String'];
|
|
88
|
-
imageUrl: Scalars['String'];
|
|
89
|
-
percents: Scalars['Int'];
|
|
90
|
-
};
|
|
91
|
-
export type ResolverTypeWrapper<T> = Promise<T> | T;
|
|
92
|
-
export type ResolverWithResolve<TResult, TParent, TContext, TArgs> = {
|
|
93
|
-
resolve: ResolverFn<TResult, TParent, TContext, TArgs>;
|
|
94
|
-
};
|
|
95
|
-
export type Resolver<TResult, TParent = {}, TContext = {}, TArgs = {}> = ResolverFn<TResult, TParent, TContext, TArgs> | ResolverWithResolve<TResult, TParent, TContext, TArgs>;
|
|
96
|
-
export type ResolverFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => Promise<TResult> | TResult;
|
|
97
|
-
export type SubscriptionSubscribeFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => AsyncIterable<TResult> | Promise<AsyncIterable<TResult>>;
|
|
98
|
-
export type SubscriptionResolveFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
|
99
|
-
export interface SubscriptionSubscriberObject<TResult, TKey extends string, TParent, TContext, TArgs> {
|
|
100
|
-
subscribe: SubscriptionSubscribeFn<{
|
|
101
|
-
[key in TKey]: TResult;
|
|
102
|
-
}, TParent, TContext, TArgs>;
|
|
103
|
-
resolve?: SubscriptionResolveFn<TResult, {
|
|
104
|
-
[key in TKey]: TResult;
|
|
105
|
-
}, TContext, TArgs>;
|
|
106
|
-
}
|
|
107
|
-
export interface SubscriptionResolverObject<TResult, TParent, TContext, TArgs> {
|
|
108
|
-
subscribe: SubscriptionSubscribeFn<any, TParent, TContext, TArgs>;
|
|
109
|
-
resolve: SubscriptionResolveFn<TResult, any, TContext, TArgs>;
|
|
110
|
-
}
|
|
111
|
-
export type SubscriptionObject<TResult, TKey extends string, TParent, TContext, TArgs> = SubscriptionSubscriberObject<TResult, TKey, TParent, TContext, TArgs> | SubscriptionResolverObject<TResult, TParent, TContext, TArgs>;
|
|
112
|
-
export type SubscriptionResolver<TResult, TKey extends string, TParent = {}, TContext = {}, TArgs = {}> = ((...args: any[]) => SubscriptionObject<TResult, TKey, TParent, TContext, TArgs>) | SubscriptionObject<TResult, TKey, TParent, TContext, TArgs>;
|
|
113
|
-
export type TypeResolveFn<TTypes, TParent = {}, TContext = {}> = (parent: TParent, context: TContext, info: GraphQLResolveInfo) => Maybe<TTypes> | Promise<Maybe<TTypes>>;
|
|
114
|
-
export type IsTypeOfResolverFn<T = {}, TContext = {}> = (obj: T, context: TContext, info: GraphQLResolveInfo) => boolean | Promise<boolean>;
|
|
115
|
-
export type NextResolverFn<T> = () => Promise<T>;
|
|
116
|
-
export type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
|
117
|
-
/** Mapping between all available schema types and the resolvers types */
|
|
118
|
-
export type IResolversTypes = {
|
|
119
|
-
Expectation: ResolverTypeWrapper<IExpectation>;
|
|
120
|
-
String: ResolverTypeWrapper<Scalars['String']>;
|
|
121
|
-
Interest: ResolverTypeWrapper<IInterest>;
|
|
122
|
-
Mutation: ResolverTypeWrapper<{}>;
|
|
123
|
-
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
|
124
|
-
Query: ResolverTypeWrapper<{}>;
|
|
125
|
-
SearchResultSelectionsPage: ResolverTypeWrapper<ISearchResultSelectionsPage>;
|
|
126
|
-
Selection: ResolverTypeWrapper<ISelection>;
|
|
127
|
-
Int: ResolverTypeWrapper<Scalars['Int']>;
|
|
128
|
-
UserExpectation: ResolverTypeWrapper<IUserExpectation>;
|
|
129
|
-
UserInterest: ResolverTypeWrapper<IUserInterest>;
|
|
130
|
-
};
|
|
131
|
-
/** Mapping between all available schema types and the resolvers parents */
|
|
132
|
-
export type IResolversParentTypes = {
|
|
133
|
-
Expectation: IExpectation;
|
|
134
|
-
String: Scalars['String'];
|
|
135
|
-
Interest: IInterest;
|
|
136
|
-
Mutation: {};
|
|
137
|
-
Boolean: Scalars['Boolean'];
|
|
138
|
-
Query: {};
|
|
139
|
-
SearchResultSelectionsPage: ISearchResultSelectionsPage;
|
|
140
|
-
Selection: ISelection;
|
|
141
|
-
Int: Scalars['Int'];
|
|
142
|
-
UserExpectation: IUserExpectation;
|
|
143
|
-
UserInterest: IUserInterest;
|
|
144
|
-
};
|
|
145
|
-
export type IOneOfDirectiveArgs = {};
|
|
146
|
-
export type IOneOfDirectiveResolver<Result, Parent, ContextType = any, Args = IOneOfDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
147
|
-
export type IExpectationResolvers<ContextType = any, ParentType extends IResolversParentTypes['Expectation'] = IResolversParentTypes['Expectation']> = {
|
|
148
|
-
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
149
|
-
imageUrl?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
150
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
151
|
-
};
|
|
152
|
-
export type IInterestResolvers<ContextType = any, ParentType extends IResolversParentTypes['Interest'] = IResolversParentTypes['Interest']> = {
|
|
153
|
-
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
154
|
-
imageUrl?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
155
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
156
|
-
};
|
|
157
|
-
export type IMutationResolvers<ContextType = any, ParentType extends IResolversParentTypes['Mutation'] = IResolversParentTypes['Mutation']> = {
|
|
158
|
-
setDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
159
|
-
saveUserInterests?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationSaveUserInterestsArgs, 'interests'>>;
|
|
160
|
-
saveUserExpectations?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationSaveUserExpectationsArgs, 'expectations'>>;
|
|
161
|
-
};
|
|
162
|
-
export type IQueryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
|
|
163
|
-
getDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
164
|
-
fetchInterests?: Resolver<Array<Maybe<IResolversTypes['Interest']>>, ParentType, ContextType>;
|
|
165
|
-
fetchExpectations?: Resolver<Array<Maybe<IResolversTypes['Expectation']>>, ParentType, ContextType>;
|
|
166
|
-
fetchUserInterests?: Resolver<Array<Maybe<IResolversTypes['UserInterest']>>, ParentType, ContextType>;
|
|
167
|
-
fetchUserExpectations?: Resolver<Array<Maybe<IResolversTypes['UserExpectation']>>, ParentType, ContextType>;
|
|
168
|
-
fetchSortSelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
169
|
-
fetchVarietyOfAddressSelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
170
|
-
fetchCategorySelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
171
|
-
fetchBlockchainSelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
172
|
-
fetchSearchSortSelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
173
|
-
fetchSearchResultTypeSelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
174
|
-
fetchSearchResultBlockchainSelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
175
|
-
fetchSearchResultCategorySelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
176
|
-
fetchSearchResultTimeSelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
177
|
-
fetchSearchResultStatusSelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
178
|
-
fetchSetsSearchResultTypeSelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
179
|
-
fetchSearchResultSelections?: Resolver<IResolversTypes['SearchResultSelectionsPage'], ParentType, ContextType>;
|
|
180
|
-
};
|
|
181
|
-
export type ISearchResultSelectionsPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['SearchResultSelectionsPage'] = IResolversParentTypes['SearchResultSelectionsPage']> = {
|
|
182
|
-
typeSelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
183
|
-
blockchainSelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
184
|
-
categorySelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
185
|
-
timeSelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
186
|
-
statusSelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
187
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
188
|
-
};
|
|
189
|
-
export type ISelectionResolvers<ContextType = any, ParentType extends IResolversParentTypes['Selection'] = IResolversParentTypes['Selection']> = {
|
|
190
|
-
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
191
|
-
ordering?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
|
192
|
-
label?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
193
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
194
|
-
};
|
|
195
|
-
export type IUserExpectationResolvers<ContextType = any, ParentType extends IResolversParentTypes['UserExpectation'] = IResolversParentTypes['UserExpectation']> = {
|
|
196
|
-
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
197
|
-
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
198
|
-
imageUrl?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
199
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
200
|
-
};
|
|
201
|
-
export type IUserInterestResolvers<ContextType = any, ParentType extends IResolversParentTypes['UserInterest'] = IResolversParentTypes['UserInterest']> = {
|
|
202
|
-
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
203
|
-
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
204
|
-
imageUrl?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
205
|
-
percents?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
|
206
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
207
|
-
};
|
|
208
|
-
export type IResolvers<ContextType = any> = {
|
|
209
|
-
Expectation?: IExpectationResolvers<ContextType>;
|
|
210
|
-
Interest?: IInterestResolvers<ContextType>;
|
|
211
|
-
Mutation?: IMutationResolvers<ContextType>;
|
|
212
|
-
Query?: IQueryResolvers<ContextType>;
|
|
213
|
-
SearchResultSelectionsPage?: ISearchResultSelectionsPageResolvers<ContextType>;
|
|
214
|
-
Selection?: ISelectionResolvers<ContextType>;
|
|
215
|
-
UserExpectation?: IUserExpectationResolvers<ContextType>;
|
|
216
|
-
UserInterest?: IUserInterestResolvers<ContextType>;
|
|
217
|
-
};
|
|
218
|
-
export type IDirectiveResolvers<ContextType = any> = {
|
|
219
|
-
oneOf?: IOneOfDirectiveResolver<any, any, ContextType>;
|
|
220
|
-
};
|
|
221
|
-
export type ISaveUserExpectationsMutationVariables = Exact<{
|
|
222
|
-
expectations: Array<Maybe<Scalars['String']>>;
|
|
223
|
-
}>;
|
|
224
|
-
export type ISaveUserExpectationsMutation = Pick<IMutation, 'saveUserExpectations'>;
|
|
225
|
-
export type ISaveUserInterestsMutationVariables = Exact<{
|
|
226
|
-
interests: Array<Maybe<Scalars['String']>>;
|
|
227
|
-
}>;
|
|
228
|
-
export type ISaveUserInterestsMutation = Pick<IMutation, 'saveUserInterests'>;
|
|
229
|
-
export type IFetchExpectationsQueryVariables = Exact<{
|
|
230
|
-
[key: string]: never;
|
|
231
|
-
}>;
|
|
232
|
-
export type IFetchExpectationsQuery = {
|
|
233
|
-
fetchExpectations: Array<Maybe<Pick<IExpectation, 'name' | 'imageUrl'>>>;
|
|
234
|
-
};
|
|
235
|
-
export type IFetchInterestsQueryVariables = Exact<{
|
|
236
|
-
[key: string]: never;
|
|
237
|
-
}>;
|
|
238
|
-
export type IFetchInterestsQuery = {
|
|
239
|
-
fetchInterests: Array<Maybe<Pick<IInterest, 'name' | 'imageUrl'>>>;
|
|
240
|
-
};
|
|
241
|
-
export type IFetchSearchResultSelectionsQueryVariables = Exact<{
|
|
242
|
-
[key: string]: never;
|
|
243
|
-
}>;
|
|
244
|
-
export type IFetchSearchResultSelectionsQuery = {
|
|
245
|
-
fetchSearchResultSelections: {
|
|
246
|
-
typeSelections: Array<Maybe<(Pick<ISelection, 'label'> & {
|
|
247
|
-
id: ISelection['name'];
|
|
248
|
-
})>>;
|
|
249
|
-
blockchainSelections: Array<Maybe<(Pick<ISelection, 'label'> & {
|
|
250
|
-
id: ISelection['name'];
|
|
251
|
-
})>>;
|
|
252
|
-
categorySelections: Array<Maybe<(Pick<ISelection, 'label'> & {
|
|
253
|
-
id: ISelection['name'];
|
|
254
|
-
})>>;
|
|
255
|
-
timeSelections: Array<Maybe<(Pick<ISelection, 'label'> & {
|
|
256
|
-
id: ISelection['name'];
|
|
257
|
-
})>>;
|
|
258
|
-
statusSelections: Array<Maybe<(Pick<ISelection, 'label'> & {
|
|
259
|
-
id: ISelection['name'];
|
|
260
|
-
})>>;
|
|
261
|
-
};
|
|
262
|
-
};
|
|
263
|
-
export type IFetchSearchResultTimeSelectionsQueryVariables = Exact<{
|
|
264
|
-
[key: string]: never;
|
|
265
|
-
}>;
|
|
266
|
-
export type IFetchSearchResultTimeSelectionsQuery = {
|
|
267
|
-
fetchSearchResultTimeSelections: Array<Maybe<Pick<ISelection, 'name' | 'label'>>>;
|
|
268
|
-
};
|
|
269
|
-
export type IFetchUserExpectationsQueryVariables = Exact<{
|
|
270
|
-
[key: string]: never;
|
|
271
|
-
}>;
|
|
272
|
-
export type IFetchUserExpectationsQuery = {
|
|
273
|
-
fetchUserExpectations: Array<Maybe<Pick<IUserExpectation, 'userId' | 'name' | 'imageUrl'>>>;
|
|
274
|
-
};
|
|
275
|
-
export type IFetchUserInterestsQueryVariables = Exact<{
|
|
276
|
-
[key: string]: never;
|
|
277
|
-
}>;
|
|
278
|
-
export type IFetchUserInterestsQuery = {
|
|
279
|
-
fetchUserInterests: Array<Maybe<Pick<IUserInterest, 'userId' | 'name' | 'imageUrl' | 'percents'>>>;
|
|
280
|
-
};
|
|
281
|
-
export type IFetchSearchResultBlockchainSelectionsQueryVariables = Exact<{
|
|
282
|
-
[key: string]: never;
|
|
283
|
-
}>;
|
|
284
|
-
export type IFetchSearchResultBlockchainSelectionsQuery = {
|
|
285
|
-
fetchSearchResultBlockchainSelections: Array<Maybe<Pick<ISelection, 'name' | 'label'>>>;
|
|
286
|
-
};
|
|
287
|
-
export type IFetchSearchResultCategorySelectionsQueryVariables = Exact<{
|
|
288
|
-
[key: string]: never;
|
|
289
|
-
}>;
|
|
290
|
-
export type IFetchSearchResultCategorySelectionsQuery = {
|
|
291
|
-
fetchSearchResultCategorySelections: Array<Maybe<Pick<ISelection, 'name' | 'label'>>>;
|
|
292
|
-
};
|
|
293
|
-
export type IFetchSearchResultStatusSelectionsQueryVariables = Exact<{
|
|
294
|
-
[key: string]: never;
|
|
295
|
-
}>;
|
|
296
|
-
export type IFetchSearchResultStatusSelectionsQuery = {
|
|
297
|
-
fetchSearchResultStatusSelections: Array<Maybe<Pick<ISelection, 'name' | 'label'>>>;
|
|
298
|
-
};
|
|
299
|
-
export type IFetchSetsSearchResultTypeSelectionsQueryVariables = Exact<{
|
|
300
|
-
[key: string]: never;
|
|
301
|
-
}>;
|
|
302
|
-
export type IFetchSetsSearchResultTypeSelectionsQuery = {
|
|
303
|
-
fetchSetsSearchResultTypeSelections: Array<Maybe<Pick<ISelection, 'name' | 'label'>>>;
|
|
304
|
-
};
|
|
305
|
-
export declare const SaveUserExpectationsDocument: Apollo.DocumentNode;
|
|
306
|
-
export type ISaveUserExpectationsMutationFn = Apollo.MutationFunction<ISaveUserExpectationsMutation, ISaveUserExpectationsMutationVariables>;
|
|
307
|
-
/**
|
|
308
|
-
* __useSaveUserExpectationsMutation__
|
|
309
|
-
*
|
|
310
|
-
* To run a mutation, you first call `useSaveUserExpectationsMutation` within a React component and pass it any options that fit your needs.
|
|
311
|
-
* When your component renders, `useSaveUserExpectationsMutation` returns a tuple that includes:
|
|
312
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
313
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
314
|
-
*
|
|
315
|
-
* @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;
|
|
316
|
-
*
|
|
317
|
-
* @example
|
|
318
|
-
* const [saveUserExpectationsMutation, { data, loading, error }] = useSaveUserExpectationsMutation({
|
|
319
|
-
* variables: {
|
|
320
|
-
* expectations: // value for 'expectations'
|
|
321
|
-
* },
|
|
322
|
-
* });
|
|
323
|
-
*/
|
|
324
|
-
export declare function useSaveUserExpectationsMutation(baseOptions?: Apollo.MutationHookOptions<ISaveUserExpectationsMutation, ISaveUserExpectationsMutationVariables>): Apollo.MutationTuple<ISaveUserExpectationsMutation, Exact<{
|
|
325
|
-
expectations: Maybe<string>[];
|
|
326
|
-
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
327
|
-
export type SaveUserExpectationsMutationHookResult = ReturnType<typeof useSaveUserExpectationsMutation>;
|
|
328
|
-
export type SaveUserExpectationsMutationResult = Apollo.MutationResult<ISaveUserExpectationsMutation>;
|
|
329
|
-
export type SaveUserExpectationsMutationOptions = Apollo.BaseMutationOptions<ISaveUserExpectationsMutation, ISaveUserExpectationsMutationVariables>;
|
|
330
|
-
export declare const SaveUserInterestsDocument: Apollo.DocumentNode;
|
|
331
|
-
export type ISaveUserInterestsMutationFn = Apollo.MutationFunction<ISaveUserInterestsMutation, ISaveUserInterestsMutationVariables>;
|
|
332
|
-
/**
|
|
333
|
-
* __useSaveUserInterestsMutation__
|
|
334
|
-
*
|
|
335
|
-
* To run a mutation, you first call `useSaveUserInterestsMutation` within a React component and pass it any options that fit your needs.
|
|
336
|
-
* When your component renders, `useSaveUserInterestsMutation` returns a tuple that includes:
|
|
337
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
338
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
339
|
-
*
|
|
340
|
-
* @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;
|
|
341
|
-
*
|
|
342
|
-
* @example
|
|
343
|
-
* const [saveUserInterestsMutation, { data, loading, error }] = useSaveUserInterestsMutation({
|
|
344
|
-
* variables: {
|
|
345
|
-
* interests: // value for 'interests'
|
|
346
|
-
* },
|
|
347
|
-
* });
|
|
348
|
-
*/
|
|
349
|
-
export declare function useSaveUserInterestsMutation(baseOptions?: Apollo.MutationHookOptions<ISaveUserInterestsMutation, ISaveUserInterestsMutationVariables>): Apollo.MutationTuple<ISaveUserInterestsMutation, Exact<{
|
|
350
|
-
interests: Maybe<string>[];
|
|
351
|
-
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
352
|
-
export type SaveUserInterestsMutationHookResult = ReturnType<typeof useSaveUserInterestsMutation>;
|
|
353
|
-
export type SaveUserInterestsMutationResult = Apollo.MutationResult<ISaveUserInterestsMutation>;
|
|
354
|
-
export type SaveUserInterestsMutationOptions = Apollo.BaseMutationOptions<ISaveUserInterestsMutation, ISaveUserInterestsMutationVariables>;
|
|
355
|
-
export declare const FetchExpectationsDocument: Apollo.DocumentNode;
|
|
356
|
-
/**
|
|
357
|
-
* __useFetchExpectationsQuery__
|
|
358
|
-
*
|
|
359
|
-
* To run a query within a React component, call `useFetchExpectationsQuery` and pass it any options that fit your needs.
|
|
360
|
-
* When your component renders, `useFetchExpectationsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
361
|
-
* you can use to render your UI.
|
|
362
|
-
*
|
|
363
|
-
* @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;
|
|
364
|
-
*
|
|
365
|
-
* @example
|
|
366
|
-
* const { data, loading, error } = useFetchExpectationsQuery({
|
|
367
|
-
* variables: {
|
|
368
|
-
* },
|
|
369
|
-
* });
|
|
370
|
-
*/
|
|
371
|
-
export declare function useFetchExpectationsQuery(baseOptions?: Apollo.QueryHookOptions<IFetchExpectationsQuery, IFetchExpectationsQueryVariables>): Apollo.QueryResult<IFetchExpectationsQuery, Exact<{
|
|
372
|
-
[key: string]: never;
|
|
373
|
-
}>>;
|
|
374
|
-
export declare function useFetchExpectationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchExpectationsQuery, IFetchExpectationsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchExpectationsQuery, Exact<{
|
|
375
|
-
[key: string]: never;
|
|
376
|
-
}>>;
|
|
377
|
-
export type FetchExpectationsQueryHookResult = ReturnType<typeof useFetchExpectationsQuery>;
|
|
378
|
-
export type FetchExpectationsLazyQueryHookResult = ReturnType<typeof useFetchExpectationsLazyQuery>;
|
|
379
|
-
export type FetchExpectationsQueryResult = Apollo.QueryResult<IFetchExpectationsQuery, IFetchExpectationsQueryVariables>;
|
|
380
|
-
export declare const FetchInterestsDocument: Apollo.DocumentNode;
|
|
381
|
-
/**
|
|
382
|
-
* __useFetchInterestsQuery__
|
|
383
|
-
*
|
|
384
|
-
* To run a query within a React component, call `useFetchInterestsQuery` and pass it any options that fit your needs.
|
|
385
|
-
* When your component renders, `useFetchInterestsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
386
|
-
* you can use to render your UI.
|
|
387
|
-
*
|
|
388
|
-
* @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;
|
|
389
|
-
*
|
|
390
|
-
* @example
|
|
391
|
-
* const { data, loading, error } = useFetchInterestsQuery({
|
|
392
|
-
* variables: {
|
|
393
|
-
* },
|
|
394
|
-
* });
|
|
395
|
-
*/
|
|
396
|
-
export declare function useFetchInterestsQuery(baseOptions?: Apollo.QueryHookOptions<IFetchInterestsQuery, IFetchInterestsQueryVariables>): Apollo.QueryResult<IFetchInterestsQuery, Exact<{
|
|
397
|
-
[key: string]: never;
|
|
398
|
-
}>>;
|
|
399
|
-
export declare function useFetchInterestsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchInterestsQuery, IFetchInterestsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchInterestsQuery, Exact<{
|
|
400
|
-
[key: string]: never;
|
|
401
|
-
}>>;
|
|
402
|
-
export type FetchInterestsQueryHookResult = ReturnType<typeof useFetchInterestsQuery>;
|
|
403
|
-
export type FetchInterestsLazyQueryHookResult = ReturnType<typeof useFetchInterestsLazyQuery>;
|
|
404
|
-
export type FetchInterestsQueryResult = Apollo.QueryResult<IFetchInterestsQuery, IFetchInterestsQueryVariables>;
|
|
405
|
-
export declare const FetchSearchResultSelectionsDocument: Apollo.DocumentNode;
|
|
406
|
-
/**
|
|
407
|
-
* __useFetchSearchResultSelectionsQuery__
|
|
408
|
-
*
|
|
409
|
-
* To run a query within a React component, call `useFetchSearchResultSelectionsQuery` and pass it any options that fit your needs.
|
|
410
|
-
* When your component renders, `useFetchSearchResultSelectionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
411
|
-
* you can use to render your UI.
|
|
412
|
-
*
|
|
413
|
-
* @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;
|
|
414
|
-
*
|
|
415
|
-
* @example
|
|
416
|
-
* const { data, loading, error } = useFetchSearchResultSelectionsQuery({
|
|
417
|
-
* variables: {
|
|
418
|
-
* },
|
|
419
|
-
* });
|
|
420
|
-
*/
|
|
421
|
-
export declare function useFetchSearchResultSelectionsQuery(baseOptions?: Apollo.QueryHookOptions<IFetchSearchResultSelectionsQuery, IFetchSearchResultSelectionsQueryVariables>): Apollo.QueryResult<IFetchSearchResultSelectionsQuery, Exact<{
|
|
422
|
-
[key: string]: never;
|
|
423
|
-
}>>;
|
|
424
|
-
export declare function useFetchSearchResultSelectionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchSearchResultSelectionsQuery, IFetchSearchResultSelectionsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchSearchResultSelectionsQuery, Exact<{
|
|
425
|
-
[key: string]: never;
|
|
426
|
-
}>>;
|
|
427
|
-
export type FetchSearchResultSelectionsQueryHookResult = ReturnType<typeof useFetchSearchResultSelectionsQuery>;
|
|
428
|
-
export type FetchSearchResultSelectionsLazyQueryHookResult = ReturnType<typeof useFetchSearchResultSelectionsLazyQuery>;
|
|
429
|
-
export type FetchSearchResultSelectionsQueryResult = Apollo.QueryResult<IFetchSearchResultSelectionsQuery, IFetchSearchResultSelectionsQueryVariables>;
|
|
430
|
-
export declare const FetchSearchResultTimeSelectionsDocument: Apollo.DocumentNode;
|
|
431
|
-
/**
|
|
432
|
-
* __useFetchSearchResultTimeSelectionsQuery__
|
|
433
|
-
*
|
|
434
|
-
* To run a query within a React component, call `useFetchSearchResultTimeSelectionsQuery` and pass it any options that fit your needs.
|
|
435
|
-
* When your component renders, `useFetchSearchResultTimeSelectionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
436
|
-
* you can use to render your UI.
|
|
437
|
-
*
|
|
438
|
-
* @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;
|
|
439
|
-
*
|
|
440
|
-
* @example
|
|
441
|
-
* const { data, loading, error } = useFetchSearchResultTimeSelectionsQuery({
|
|
442
|
-
* variables: {
|
|
443
|
-
* },
|
|
444
|
-
* });
|
|
445
|
-
*/
|
|
446
|
-
export declare function useFetchSearchResultTimeSelectionsQuery(baseOptions?: Apollo.QueryHookOptions<IFetchSearchResultTimeSelectionsQuery, IFetchSearchResultTimeSelectionsQueryVariables>): Apollo.QueryResult<IFetchSearchResultTimeSelectionsQuery, Exact<{
|
|
447
|
-
[key: string]: never;
|
|
448
|
-
}>>;
|
|
449
|
-
export declare function useFetchSearchResultTimeSelectionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchSearchResultTimeSelectionsQuery, IFetchSearchResultTimeSelectionsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchSearchResultTimeSelectionsQuery, Exact<{
|
|
450
|
-
[key: string]: never;
|
|
451
|
-
}>>;
|
|
452
|
-
export type FetchSearchResultTimeSelectionsQueryHookResult = ReturnType<typeof useFetchSearchResultTimeSelectionsQuery>;
|
|
453
|
-
export type FetchSearchResultTimeSelectionsLazyQueryHookResult = ReturnType<typeof useFetchSearchResultTimeSelectionsLazyQuery>;
|
|
454
|
-
export type FetchSearchResultTimeSelectionsQueryResult = Apollo.QueryResult<IFetchSearchResultTimeSelectionsQuery, IFetchSearchResultTimeSelectionsQueryVariables>;
|
|
455
|
-
export declare const FetchUserExpectationsDocument: Apollo.DocumentNode;
|
|
456
|
-
/**
|
|
457
|
-
* __useFetchUserExpectationsQuery__
|
|
458
|
-
*
|
|
459
|
-
* To run a query within a React component, call `useFetchUserExpectationsQuery` and pass it any options that fit your needs.
|
|
460
|
-
* When your component renders, `useFetchUserExpectationsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
461
|
-
* you can use to render your UI.
|
|
462
|
-
*
|
|
463
|
-
* @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;
|
|
464
|
-
*
|
|
465
|
-
* @example
|
|
466
|
-
* const { data, loading, error } = useFetchUserExpectationsQuery({
|
|
467
|
-
* variables: {
|
|
468
|
-
* },
|
|
469
|
-
* });
|
|
470
|
-
*/
|
|
471
|
-
export declare function useFetchUserExpectationsQuery(baseOptions?: Apollo.QueryHookOptions<IFetchUserExpectationsQuery, IFetchUserExpectationsQueryVariables>): Apollo.QueryResult<IFetchUserExpectationsQuery, Exact<{
|
|
472
|
-
[key: string]: never;
|
|
473
|
-
}>>;
|
|
474
|
-
export declare function useFetchUserExpectationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchUserExpectationsQuery, IFetchUserExpectationsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchUserExpectationsQuery, Exact<{
|
|
475
|
-
[key: string]: never;
|
|
476
|
-
}>>;
|
|
477
|
-
export type FetchUserExpectationsQueryHookResult = ReturnType<typeof useFetchUserExpectationsQuery>;
|
|
478
|
-
export type FetchUserExpectationsLazyQueryHookResult = ReturnType<typeof useFetchUserExpectationsLazyQuery>;
|
|
479
|
-
export type FetchUserExpectationsQueryResult = Apollo.QueryResult<IFetchUserExpectationsQuery, IFetchUserExpectationsQueryVariables>;
|
|
480
|
-
export declare const FetchUserInterestsDocument: Apollo.DocumentNode;
|
|
481
|
-
/**
|
|
482
|
-
* __useFetchUserInterestsQuery__
|
|
483
|
-
*
|
|
484
|
-
* To run a query within a React component, call `useFetchUserInterestsQuery` and pass it any options that fit your needs.
|
|
485
|
-
* When your component renders, `useFetchUserInterestsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
486
|
-
* you can use to render your UI.
|
|
487
|
-
*
|
|
488
|
-
* @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;
|
|
489
|
-
*
|
|
490
|
-
* @example
|
|
491
|
-
* const { data, loading, error } = useFetchUserInterestsQuery({
|
|
492
|
-
* variables: {
|
|
493
|
-
* },
|
|
494
|
-
* });
|
|
495
|
-
*/
|
|
496
|
-
export declare function useFetchUserInterestsQuery(baseOptions?: Apollo.QueryHookOptions<IFetchUserInterestsQuery, IFetchUserInterestsQueryVariables>): Apollo.QueryResult<IFetchUserInterestsQuery, Exact<{
|
|
497
|
-
[key: string]: never;
|
|
498
|
-
}>>;
|
|
499
|
-
export declare function useFetchUserInterestsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchUserInterestsQuery, IFetchUserInterestsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchUserInterestsQuery, Exact<{
|
|
500
|
-
[key: string]: never;
|
|
501
|
-
}>>;
|
|
502
|
-
export type FetchUserInterestsQueryHookResult = ReturnType<typeof useFetchUserInterestsQuery>;
|
|
503
|
-
export type FetchUserInterestsLazyQueryHookResult = ReturnType<typeof useFetchUserInterestsLazyQuery>;
|
|
504
|
-
export type FetchUserInterestsQueryResult = Apollo.QueryResult<IFetchUserInterestsQuery, IFetchUserInterestsQueryVariables>;
|
|
505
|
-
export declare const FetchSearchResultBlockchainSelectionsDocument: Apollo.DocumentNode;
|
|
506
|
-
/**
|
|
507
|
-
* __useFetchSearchResultBlockchainSelectionsQuery__
|
|
508
|
-
*
|
|
509
|
-
* To run a query within a React component, call `useFetchSearchResultBlockchainSelectionsQuery` and pass it any options that fit your needs.
|
|
510
|
-
* When your component renders, `useFetchSearchResultBlockchainSelectionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
511
|
-
* you can use to render your UI.
|
|
512
|
-
*
|
|
513
|
-
* @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;
|
|
514
|
-
*
|
|
515
|
-
* @example
|
|
516
|
-
* const { data, loading, error } = useFetchSearchResultBlockchainSelectionsQuery({
|
|
517
|
-
* variables: {
|
|
518
|
-
* },
|
|
519
|
-
* });
|
|
520
|
-
*/
|
|
521
|
-
export declare function useFetchSearchResultBlockchainSelectionsQuery(baseOptions?: Apollo.QueryHookOptions<IFetchSearchResultBlockchainSelectionsQuery, IFetchSearchResultBlockchainSelectionsQueryVariables>): Apollo.QueryResult<IFetchSearchResultBlockchainSelectionsQuery, Exact<{
|
|
522
|
-
[key: string]: never;
|
|
523
|
-
}>>;
|
|
524
|
-
export declare function useFetchSearchResultBlockchainSelectionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchSearchResultBlockchainSelectionsQuery, IFetchSearchResultBlockchainSelectionsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchSearchResultBlockchainSelectionsQuery, Exact<{
|
|
525
|
-
[key: string]: never;
|
|
526
|
-
}>>;
|
|
527
|
-
export type FetchSearchResultBlockchainSelectionsQueryHookResult = ReturnType<typeof useFetchSearchResultBlockchainSelectionsQuery>;
|
|
528
|
-
export type FetchSearchResultBlockchainSelectionsLazyQueryHookResult = ReturnType<typeof useFetchSearchResultBlockchainSelectionsLazyQuery>;
|
|
529
|
-
export type FetchSearchResultBlockchainSelectionsQueryResult = Apollo.QueryResult<IFetchSearchResultBlockchainSelectionsQuery, IFetchSearchResultBlockchainSelectionsQueryVariables>;
|
|
530
|
-
export declare const FetchSearchResultCategorySelectionsDocument: Apollo.DocumentNode;
|
|
531
|
-
/**
|
|
532
|
-
* __useFetchSearchResultCategorySelectionsQuery__
|
|
533
|
-
*
|
|
534
|
-
* To run a query within a React component, call `useFetchSearchResultCategorySelectionsQuery` and pass it any options that fit your needs.
|
|
535
|
-
* When your component renders, `useFetchSearchResultCategorySelectionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
536
|
-
* you can use to render your UI.
|
|
537
|
-
*
|
|
538
|
-
* @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;
|
|
539
|
-
*
|
|
540
|
-
* @example
|
|
541
|
-
* const { data, loading, error } = useFetchSearchResultCategorySelectionsQuery({
|
|
542
|
-
* variables: {
|
|
543
|
-
* },
|
|
544
|
-
* });
|
|
545
|
-
*/
|
|
546
|
-
export declare function useFetchSearchResultCategorySelectionsQuery(baseOptions?: Apollo.QueryHookOptions<IFetchSearchResultCategorySelectionsQuery, IFetchSearchResultCategorySelectionsQueryVariables>): Apollo.QueryResult<IFetchSearchResultCategorySelectionsQuery, Exact<{
|
|
547
|
-
[key: string]: never;
|
|
548
|
-
}>>;
|
|
549
|
-
export declare function useFetchSearchResultCategorySelectionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchSearchResultCategorySelectionsQuery, IFetchSearchResultCategorySelectionsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchSearchResultCategorySelectionsQuery, Exact<{
|
|
550
|
-
[key: string]: never;
|
|
551
|
-
}>>;
|
|
552
|
-
export type FetchSearchResultCategorySelectionsQueryHookResult = ReturnType<typeof useFetchSearchResultCategorySelectionsQuery>;
|
|
553
|
-
export type FetchSearchResultCategorySelectionsLazyQueryHookResult = ReturnType<typeof useFetchSearchResultCategorySelectionsLazyQuery>;
|
|
554
|
-
export type FetchSearchResultCategorySelectionsQueryResult = Apollo.QueryResult<IFetchSearchResultCategorySelectionsQuery, IFetchSearchResultCategorySelectionsQueryVariables>;
|
|
555
|
-
export declare const FetchSearchResultStatusSelectionsDocument: Apollo.DocumentNode;
|
|
556
|
-
/**
|
|
557
|
-
* __useFetchSearchResultStatusSelectionsQuery__
|
|
558
|
-
*
|
|
559
|
-
* To run a query within a React component, call `useFetchSearchResultStatusSelectionsQuery` and pass it any options that fit your needs.
|
|
560
|
-
* When your component renders, `useFetchSearchResultStatusSelectionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
561
|
-
* you can use to render your UI.
|
|
562
|
-
*
|
|
563
|
-
* @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;
|
|
564
|
-
*
|
|
565
|
-
* @example
|
|
566
|
-
* const { data, loading, error } = useFetchSearchResultStatusSelectionsQuery({
|
|
567
|
-
* variables: {
|
|
568
|
-
* },
|
|
569
|
-
* });
|
|
570
|
-
*/
|
|
571
|
-
export declare function useFetchSearchResultStatusSelectionsQuery(baseOptions?: Apollo.QueryHookOptions<IFetchSearchResultStatusSelectionsQuery, IFetchSearchResultStatusSelectionsQueryVariables>): Apollo.QueryResult<IFetchSearchResultStatusSelectionsQuery, Exact<{
|
|
572
|
-
[key: string]: never;
|
|
573
|
-
}>>;
|
|
574
|
-
export declare function useFetchSearchResultStatusSelectionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchSearchResultStatusSelectionsQuery, IFetchSearchResultStatusSelectionsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchSearchResultStatusSelectionsQuery, Exact<{
|
|
575
|
-
[key: string]: never;
|
|
576
|
-
}>>;
|
|
577
|
-
export type FetchSearchResultStatusSelectionsQueryHookResult = ReturnType<typeof useFetchSearchResultStatusSelectionsQuery>;
|
|
578
|
-
export type FetchSearchResultStatusSelectionsLazyQueryHookResult = ReturnType<typeof useFetchSearchResultStatusSelectionsLazyQuery>;
|
|
579
|
-
export type FetchSearchResultStatusSelectionsQueryResult = Apollo.QueryResult<IFetchSearchResultStatusSelectionsQuery, IFetchSearchResultStatusSelectionsQueryVariables>;
|
|
580
|
-
export declare const FetchSetsSearchResultTypeSelectionsDocument: Apollo.DocumentNode;
|
|
581
|
-
/**
|
|
582
|
-
* __useFetchSetsSearchResultTypeSelectionsQuery__
|
|
583
|
-
*
|
|
584
|
-
* To run a query within a React component, call `useFetchSetsSearchResultTypeSelectionsQuery` and pass it any options that fit your needs.
|
|
585
|
-
* When your component renders, `useFetchSetsSearchResultTypeSelectionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
586
|
-
* you can use to render your UI.
|
|
587
|
-
*
|
|
588
|
-
* @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;
|
|
589
|
-
*
|
|
590
|
-
* @example
|
|
591
|
-
* const { data, loading, error } = useFetchSetsSearchResultTypeSelectionsQuery({
|
|
592
|
-
* variables: {
|
|
593
|
-
* },
|
|
594
|
-
* });
|
|
595
|
-
*/
|
|
596
|
-
export declare function useFetchSetsSearchResultTypeSelectionsQuery(baseOptions?: Apollo.QueryHookOptions<IFetchSetsSearchResultTypeSelectionsQuery, IFetchSetsSearchResultTypeSelectionsQueryVariables>): Apollo.QueryResult<IFetchSetsSearchResultTypeSelectionsQuery, Exact<{
|
|
597
|
-
[key: string]: never;
|
|
598
|
-
}>>;
|
|
599
|
-
export declare function useFetchSetsSearchResultTypeSelectionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchSetsSearchResultTypeSelectionsQuery, IFetchSetsSearchResultTypeSelectionsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchSetsSearchResultTypeSelectionsQuery, Exact<{
|
|
600
|
-
[key: string]: never;
|
|
601
|
-
}>>;
|
|
602
|
-
export type FetchSetsSearchResultTypeSelectionsQueryHookResult = ReturnType<typeof useFetchSetsSearchResultTypeSelectionsQuery>;
|
|
603
|
-
export type FetchSetsSearchResultTypeSelectionsLazyQueryHookResult = ReturnType<typeof useFetchSetsSearchResultTypeSelectionsLazyQuery>;
|
|
604
|
-
export type FetchSetsSearchResultTypeSelectionsQueryResult = Apollo.QueryResult<IFetchSetsSearchResultTypeSelectionsQuery, IFetchSetsSearchResultTypeSelectionsQueryVariables>;
|