@dokamerce/web-sdk 0.9.0
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/.ls-lint.yml +8 -0
- package/.nvmrc +1 -0
- package/.prettierignore +0 -0
- package/.prettierrc.js +3 -0
- package/README.md +47 -0
- package/codegen.yml +11 -0
- package/dist/graphql/__generated__/gateway.d.ts +2073 -0
- package/dist/graphql/__generated__/gateway.js +747 -0
- package/dist/graphql/__generated__/gateway.js.map +1 -0
- package/dist/graphql/src/gateway/index.d.ts +2 -0
- package/dist/graphql/src/gateway/index.js +20 -0
- package/dist/graphql/src/gateway/index.js.map +1 -0
- package/dist/graphql/src/utils/extract-graphql-error-message.util.d.ts +1 -0
- package/dist/graphql/src/utils/extract-graphql-error-message.util.js +16 -0
- package/dist/graphql/src/utils/extract-graphql-error-message.util.js.map +1 -0
- package/dist/graphql/src/utils/index.d.ts +4 -0
- package/dist/graphql/src/utils/index.js +21 -0
- package/dist/graphql/src/utils/index.js.map +1 -0
- package/dist/graphql/src/utils/use-graphql-mutation.util.d.ts +15 -0
- package/dist/graphql/src/utils/use-graphql-mutation.util.js +37 -0
- package/dist/graphql/src/utils/use-graphql-mutation.util.js.map +1 -0
- package/dist/graphql/src/utils/use-infinite-query.util.d.ts +23 -0
- package/dist/graphql/src/utils/use-infinite-query.util.js +57 -0
- package/dist/graphql/src/utils/use-infinite-query.util.js.map +1 -0
- package/dist/graphql/src/utils/use.query.util.d.ts +13 -0
- package/dist/graphql/src/utils/use.query.util.js +19 -0
- package/dist/graphql/src/utils/use.query.util.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/web-sdk/src/constants/graphql-base.constant.d.ts +1 -0
- package/dist/web-sdk/src/constants/graphql-base.constant.js +5 -0
- package/dist/web-sdk/src/constants/graphql-base.constant.js.map +1 -0
- package/dist/web-sdk/src/contexts/index.d.ts +12 -0
- package/dist/web-sdk/src/contexts/index.js +29 -0
- package/dist/web-sdk/src/contexts/index.js.map +1 -0
- package/dist/web-sdk/src/functions/init-sdk-client.function.d.ts +7 -0
- package/dist/web-sdk/src/functions/init-sdk-client.function.js +16 -0
- package/dist/web-sdk/src/functions/init-sdk-client.function.js.map +1 -0
- package/dist/web-sdk/src/functions/init-sdk.function.d.ts +6 -0
- package/dist/web-sdk/src/functions/init-sdk.function.js +23 -0
- package/dist/web-sdk/src/functions/init-sdk.function.js.map +1 -0
- package/dist/web-sdk/src/functions/safe-call.function.d.ts +9 -0
- package/dist/web-sdk/src/functions/safe-call.function.js +21 -0
- package/dist/web-sdk/src/functions/safe-call.function.js.map +1 -0
- package/dist/web-sdk/src/index.d.ts +8 -0
- package/dist/web-sdk/src/index.js +35 -0
- package/dist/web-sdk/src/index.js.map +1 -0
- package/dist/web-sdk/src/services/attributes.d.ts +8 -0
- package/dist/web-sdk/src/services/attributes.js +25 -0
- package/dist/web-sdk/src/services/attributes.js.map +1 -0
- package/dist/web-sdk/src/services/brands.d.ts +8 -0
- package/dist/web-sdk/src/services/brands.js +25 -0
- package/dist/web-sdk/src/services/brands.js.map +1 -0
- package/dist/web-sdk/src/services/categories.d.ts +8 -0
- package/dist/web-sdk/src/services/categories.js +25 -0
- package/dist/web-sdk/src/services/categories.js.map +1 -0
- package/dist/web-sdk/src/services/colors.d.ts +8 -0
- package/dist/web-sdk/src/services/colors.js +25 -0
- package/dist/web-sdk/src/services/colors.js.map +1 -0
- package/dist/web-sdk/src/services/customers.d.ts +10 -0
- package/dist/web-sdk/src/services/customers.js +33 -0
- package/dist/web-sdk/src/services/customers.js.map +1 -0
- package/dist/web-sdk/src/services/files.d.ts +8 -0
- package/dist/web-sdk/src/services/files.js +24 -0
- package/dist/web-sdk/src/services/files.js.map +1 -0
- package/dist/web-sdk/src/services/index.d.ts +9 -0
- package/dist/web-sdk/src/services/index.js +26 -0
- package/dist/web-sdk/src/services/index.js.map +1 -0
- package/dist/web-sdk/src/services/metrics.d.ts +7 -0
- package/dist/web-sdk/src/services/metrics.js +20 -0
- package/dist/web-sdk/src/services/metrics.js.map +1 -0
- package/dist/web-sdk/src/services/orders.d.ts +10 -0
- package/dist/web-sdk/src/services/orders.js +33 -0
- package/dist/web-sdk/src/services/orders.js.map +1 -0
- package/dist/web-sdk/src/services/products.d.ts +11 -0
- package/dist/web-sdk/src/services/products.js +36 -0
- package/dist/web-sdk/src/services/products.js.map +1 -0
- package/dist/web-sdk/src/services/sellers.d.ts +10 -0
- package/dist/web-sdk/src/services/sellers.js +33 -0
- package/dist/web-sdk/src/services/sellers.js.map +1 -0
- package/dist/web-sdk/src/typings/pagination.typing.d.ts +15 -0
- package/dist/web-sdk/src/typings/pagination.typing.js +3 -0
- package/dist/web-sdk/src/typings/pagination.typing.js.map +1 -0
- package/dist/web-sdk/src/typings/sdk.typing.d.ts +14 -0
- package/dist/web-sdk/src/typings/sdk.typing.js +3 -0
- package/dist/web-sdk/src/typings/sdk.typing.js.map +1 -0
- package/dist/web-sdk/src/utils/fetch-all-infinite.util.d.ts +5 -0
- package/dist/web-sdk/src/utils/fetch-all-infinite.util.js +24 -0
- package/dist/web-sdk/src/utils/fetch-all-infinite.util.js.map +1 -0
- package/package.json +20 -0
- package/src/constants/graphql-base.constant.ts +1 -0
- package/src/contexts/index.ts +33 -0
- package/src/functions/init-sdk-client.function.ts +19 -0
- package/src/functions/init-sdk.function.ts +26 -0
- package/src/functions/safe-call.function.ts +29 -0
- package/src/index.d.ts +0 -0
- package/src/index.ts +74 -0
- package/src/services/attributes.ts +42 -0
- package/src/services/brands.ts +41 -0
- package/src/services/categories.ts +41 -0
- package/src/services/colors.ts +41 -0
- package/src/services/customers.ts +60 -0
- package/src/services/files.ts +58 -0
- package/src/services/index.ts +9 -0
- package/src/services/metrics.ts +39 -0
- package/src/services/orders.ts +59 -0
- package/src/services/products.ts +65 -0
- package/src/services/sellers.ts +91 -0
- package/src/typings/pagination.typing.ts +18 -0
- package/src/typings/sdk.typing.ts +27 -0
- package/src/utils/fetch-all-infinite.util.ts +41 -0
- package/tsconfig.dev.json +32 -0
- package/tsconfig.json +37 -0
|
@@ -0,0 +1,2073 @@
|
|
|
1
|
+
export type Maybe<T> = T | null;
|
|
2
|
+
export type InputMaybe<T> = Maybe<T>;
|
|
3
|
+
export type Exact<T extends {
|
|
4
|
+
[key: string]: unknown;
|
|
5
|
+
}> = {
|
|
6
|
+
[K in keyof T]: T[K];
|
|
7
|
+
};
|
|
8
|
+
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
9
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
10
|
+
};
|
|
11
|
+
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
12
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
13
|
+
};
|
|
14
|
+
export type MakeEmpty<T extends {
|
|
15
|
+
[key: string]: unknown;
|
|
16
|
+
}, K extends keyof T> = {
|
|
17
|
+
[_ in K]?: never;
|
|
18
|
+
};
|
|
19
|
+
export type Incremental<T> = T | {
|
|
20
|
+
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
21
|
+
};
|
|
22
|
+
export type Scalars = {
|
|
23
|
+
ID: {
|
|
24
|
+
input: string;
|
|
25
|
+
output: string;
|
|
26
|
+
};
|
|
27
|
+
String: {
|
|
28
|
+
input: string;
|
|
29
|
+
output: string;
|
|
30
|
+
};
|
|
31
|
+
Boolean: {
|
|
32
|
+
input: boolean;
|
|
33
|
+
output: boolean;
|
|
34
|
+
};
|
|
35
|
+
Int: {
|
|
36
|
+
input: number;
|
|
37
|
+
output: number;
|
|
38
|
+
};
|
|
39
|
+
Float: {
|
|
40
|
+
input: number;
|
|
41
|
+
output: number;
|
|
42
|
+
};
|
|
43
|
+
DateTime: {
|
|
44
|
+
input: any;
|
|
45
|
+
output: any;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
export type Attribute = {
|
|
49
|
+
__typename?: 'Attribute';
|
|
50
|
+
active: Scalars['Boolean']['output'];
|
|
51
|
+
createdAt: Scalars['DateTime']['output'];
|
|
52
|
+
id: Scalars['ID']['output'];
|
|
53
|
+
name: Scalars['String']['output'];
|
|
54
|
+
type: Scalars['String']['output'];
|
|
55
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
56
|
+
values?: Maybe<Array<AttributeValue>>;
|
|
57
|
+
};
|
|
58
|
+
export declare enum AttributeFieldsEnum {
|
|
59
|
+
CreatedAt = "createdAt",
|
|
60
|
+
Id = "id",
|
|
61
|
+
Name = "name",
|
|
62
|
+
UpdatedAt = "updatedAt"
|
|
63
|
+
}
|
|
64
|
+
export type AttributeFilter = {
|
|
65
|
+
id?: InputMaybe<IdArrayFilter>;
|
|
66
|
+
name?: InputMaybe<StringArrayFilter>;
|
|
67
|
+
};
|
|
68
|
+
export type AttributeSort = {
|
|
69
|
+
field: AttributeFieldsEnum;
|
|
70
|
+
order?: InputMaybe<SortOrderEnum>;
|
|
71
|
+
};
|
|
72
|
+
export type AttributeValue = {
|
|
73
|
+
__typename?: 'AttributeValue';
|
|
74
|
+
default: Scalars['Boolean']['output'];
|
|
75
|
+
name: Scalars['String']['output'];
|
|
76
|
+
};
|
|
77
|
+
export type Brand = {
|
|
78
|
+
__typename?: 'Brand';
|
|
79
|
+
active?: Maybe<Scalars['Boolean']['output']>;
|
|
80
|
+
createdAt: Scalars['DateTime']['output'];
|
|
81
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
82
|
+
id: Scalars['ID']['output'];
|
|
83
|
+
logo?: Maybe<File>;
|
|
84
|
+
name: Scalars['String']['output'];
|
|
85
|
+
orderNumber: Scalars['Float']['output'];
|
|
86
|
+
slug: Scalars['String']['output'];
|
|
87
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
88
|
+
};
|
|
89
|
+
export declare enum BrandFieldsEnum {
|
|
90
|
+
Active = "active",
|
|
91
|
+
CreatedAt = "createdAt",
|
|
92
|
+
Description = "description",
|
|
93
|
+
Id = "id",
|
|
94
|
+
Name = "name",
|
|
95
|
+
OrderNumber = "orderNumber",
|
|
96
|
+
Slug = "slug",
|
|
97
|
+
UpdatedAt = "updatedAt"
|
|
98
|
+
}
|
|
99
|
+
export type BrandFilter = {
|
|
100
|
+
id?: InputMaybe<IdArrayFilter>;
|
|
101
|
+
name?: InputMaybe<StringArrayFilter>;
|
|
102
|
+
};
|
|
103
|
+
export type BrandSort = {
|
|
104
|
+
field: BrandFieldsEnum;
|
|
105
|
+
order?: InputMaybe<SortOrderEnum>;
|
|
106
|
+
};
|
|
107
|
+
export type Category = {
|
|
108
|
+
__typename?: 'Category';
|
|
109
|
+
children?: Maybe<Array<Category>>;
|
|
110
|
+
createdAt: Scalars['DateTime']['output'];
|
|
111
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
112
|
+
id: Scalars['ID']['output'];
|
|
113
|
+
name: Scalars['String']['output'];
|
|
114
|
+
names?: Maybe<Array<LocalizedText>>;
|
|
115
|
+
parent?: Maybe<Category>;
|
|
116
|
+
slug: Scalars['String']['output'];
|
|
117
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
118
|
+
};
|
|
119
|
+
export declare enum CategoryFieldsEnum {
|
|
120
|
+
CreatedAt = "createdAt",
|
|
121
|
+
Id = "id",
|
|
122
|
+
Name = "name",
|
|
123
|
+
UpdatedAt = "updatedAt"
|
|
124
|
+
}
|
|
125
|
+
export type CategoryFilter = {
|
|
126
|
+
id?: InputMaybe<IdArrayFilter>;
|
|
127
|
+
name?: InputMaybe<StringArrayFilter>;
|
|
128
|
+
};
|
|
129
|
+
export type CategorySort = {
|
|
130
|
+
field: CategoryFieldsEnum;
|
|
131
|
+
order?: InputMaybe<SortOrderEnum>;
|
|
132
|
+
};
|
|
133
|
+
export type Color = {
|
|
134
|
+
__typename?: 'Color';
|
|
135
|
+
createdAt: Scalars['DateTime']['output'];
|
|
136
|
+
hexCode: Scalars['String']['output'];
|
|
137
|
+
id: Scalars['ID']['output'];
|
|
138
|
+
name: Scalars['String']['output'];
|
|
139
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
140
|
+
};
|
|
141
|
+
export declare enum ColorFieldsEnum {
|
|
142
|
+
CreatedAt = "createdAt",
|
|
143
|
+
Id = "id",
|
|
144
|
+
Name = "name",
|
|
145
|
+
UpdatedAt = "updatedAt"
|
|
146
|
+
}
|
|
147
|
+
export type ColorFilter = {
|
|
148
|
+
id?: InputMaybe<IdArrayFilter>;
|
|
149
|
+
name?: InputMaybe<StringArrayFilter>;
|
|
150
|
+
};
|
|
151
|
+
export type ColorSort = {
|
|
152
|
+
field: ColorFieldsEnum;
|
|
153
|
+
order?: InputMaybe<SortOrderEnum>;
|
|
154
|
+
};
|
|
155
|
+
export type CompleteFileUploadInput = {
|
|
156
|
+
errorReason?: InputMaybe<Scalars['String']['input']>;
|
|
157
|
+
parts?: InputMaybe<Array<FileUploadPartInput>>;
|
|
158
|
+
status: StatusEnum;
|
|
159
|
+
};
|
|
160
|
+
export type CreateCustomerInput = {
|
|
161
|
+
fullName: Scalars['String']['input'];
|
|
162
|
+
};
|
|
163
|
+
export type CreateOrderInput = {
|
|
164
|
+
total: Scalars['Float']['input'];
|
|
165
|
+
};
|
|
166
|
+
export type CreateProductInput = {
|
|
167
|
+
name: Scalars['String']['input'];
|
|
168
|
+
};
|
|
169
|
+
export type CreateSellerInput = {
|
|
170
|
+
active: Scalars['Boolean']['input'];
|
|
171
|
+
name: Scalars['String']['input'];
|
|
172
|
+
orderNumber: Scalars['Int']['input'];
|
|
173
|
+
slug: Scalars['String']['input'];
|
|
174
|
+
verified: Scalars['Boolean']['input'];
|
|
175
|
+
};
|
|
176
|
+
export type Customer = {
|
|
177
|
+
__typename?: 'Customer';
|
|
178
|
+
createdAt: Scalars['DateTime']['output'];
|
|
179
|
+
fullName: Scalars['String']['output'];
|
|
180
|
+
id: Scalars['ID']['output'];
|
|
181
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
182
|
+
};
|
|
183
|
+
export declare enum CustomerFieldsEnum {
|
|
184
|
+
CreatedAt = "createdAt",
|
|
185
|
+
FullName = "fullName",
|
|
186
|
+
Id = "id",
|
|
187
|
+
UpdatedAt = "updatedAt"
|
|
188
|
+
}
|
|
189
|
+
export type CustomerFilter = {
|
|
190
|
+
id?: InputMaybe<IdArrayFilter>;
|
|
191
|
+
name?: InputMaybe<StringArrayFilter>;
|
|
192
|
+
};
|
|
193
|
+
export type CustomerSort = {
|
|
194
|
+
field: CustomerFieldsEnum;
|
|
195
|
+
order?: InputMaybe<SortOrderEnum>;
|
|
196
|
+
};
|
|
197
|
+
export type File = {
|
|
198
|
+
__typename?: 'File';
|
|
199
|
+
createdAt: Scalars['DateTime']['output'];
|
|
200
|
+
id: Scalars['ID']['output'];
|
|
201
|
+
name: Scalars['String']['output'];
|
|
202
|
+
size?: Maybe<Scalars['Int']['output']>;
|
|
203
|
+
status: FileStatusEnum;
|
|
204
|
+
thumbnails: FileThumbnails;
|
|
205
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
206
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
207
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
208
|
+
};
|
|
209
|
+
export declare enum FileStatusEnum {
|
|
210
|
+
Completed = "COMPLETED",
|
|
211
|
+
Failed = "FAILED",
|
|
212
|
+
Processing = "PROCESSING",
|
|
213
|
+
Uploading = "UPLOADING"
|
|
214
|
+
}
|
|
215
|
+
export type FileThumbnails = {
|
|
216
|
+
__typename?: 'FileThumbnails';
|
|
217
|
+
thumbnail450Url?: Maybe<Scalars['String']['output']>;
|
|
218
|
+
thumbnail900Url?: Maybe<Scalars['String']['output']>;
|
|
219
|
+
};
|
|
220
|
+
export type FileUpload = {
|
|
221
|
+
__typename?: 'FileUpload';
|
|
222
|
+
file: File;
|
|
223
|
+
uploadId: Scalars['ID']['output'];
|
|
224
|
+
urls: Array<FileUploadUrl>;
|
|
225
|
+
};
|
|
226
|
+
export type FileUploadPartInput = {
|
|
227
|
+
order: Scalars['Int']['input'];
|
|
228
|
+
tag: Scalars['String']['input'];
|
|
229
|
+
};
|
|
230
|
+
export type FileUploadUrl = {
|
|
231
|
+
__typename?: 'FileUploadUrl';
|
|
232
|
+
order: Scalars['Int']['output'];
|
|
233
|
+
url: Scalars['String']['output'];
|
|
234
|
+
};
|
|
235
|
+
export type IdArrayFilter = {
|
|
236
|
+
every?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
237
|
+
none?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
238
|
+
some?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
239
|
+
};
|
|
240
|
+
export type InfiniteAttributeEdge = {
|
|
241
|
+
__typename?: 'InfiniteAttributeEdge';
|
|
242
|
+
cursor: Scalars['String']['output'];
|
|
243
|
+
node: Attribute;
|
|
244
|
+
};
|
|
245
|
+
export type InfiniteAttributesConnection = {
|
|
246
|
+
__typename?: 'InfiniteAttributesConnection';
|
|
247
|
+
edges: Array<InfiniteAttributeEdge>;
|
|
248
|
+
pageInfo: InfinitePageInfo;
|
|
249
|
+
};
|
|
250
|
+
export type InfiniteBrandEdge = {
|
|
251
|
+
__typename?: 'InfiniteBrandEdge';
|
|
252
|
+
cursor: Scalars['String']['output'];
|
|
253
|
+
node: Brand;
|
|
254
|
+
};
|
|
255
|
+
export type InfiniteBrandsConnection = {
|
|
256
|
+
__typename?: 'InfiniteBrandsConnection';
|
|
257
|
+
edges: Array<InfiniteBrandEdge>;
|
|
258
|
+
pageInfo: InfinitePageInfo;
|
|
259
|
+
};
|
|
260
|
+
export type InfiniteCategoriesConnection = {
|
|
261
|
+
__typename?: 'InfiniteCategoriesConnection';
|
|
262
|
+
edges: Array<InfiniteCategoryEdge>;
|
|
263
|
+
pageInfo: InfinitePageInfo;
|
|
264
|
+
};
|
|
265
|
+
export type InfiniteCategoryEdge = {
|
|
266
|
+
__typename?: 'InfiniteCategoryEdge';
|
|
267
|
+
cursor: Scalars['String']['output'];
|
|
268
|
+
node: Category;
|
|
269
|
+
};
|
|
270
|
+
export type InfiniteColorEdge = {
|
|
271
|
+
__typename?: 'InfiniteColorEdge';
|
|
272
|
+
cursor: Scalars['String']['output'];
|
|
273
|
+
node: Color;
|
|
274
|
+
};
|
|
275
|
+
export type InfiniteColorsConnection = {
|
|
276
|
+
__typename?: 'InfiniteColorsConnection';
|
|
277
|
+
edges: Array<InfiniteColorEdge>;
|
|
278
|
+
pageInfo: InfinitePageInfo;
|
|
279
|
+
};
|
|
280
|
+
export type InfiniteCustomerEdge = {
|
|
281
|
+
__typename?: 'InfiniteCustomerEdge';
|
|
282
|
+
cursor: Scalars['String']['output'];
|
|
283
|
+
node: Customer;
|
|
284
|
+
};
|
|
285
|
+
export type InfiniteCustomersConnection = {
|
|
286
|
+
__typename?: 'InfiniteCustomersConnection';
|
|
287
|
+
edges: Array<InfiniteCustomerEdge>;
|
|
288
|
+
pageInfo: InfinitePageInfo;
|
|
289
|
+
};
|
|
290
|
+
export type InfiniteMetricEdge = {
|
|
291
|
+
__typename?: 'InfiniteMetricEdge';
|
|
292
|
+
cursor: Scalars['String']['output'];
|
|
293
|
+
node: Metric;
|
|
294
|
+
};
|
|
295
|
+
export type InfiniteMetricsConnection = {
|
|
296
|
+
__typename?: 'InfiniteMetricsConnection';
|
|
297
|
+
edges: Array<InfiniteMetricEdge>;
|
|
298
|
+
pageInfo: InfinitePageInfo;
|
|
299
|
+
};
|
|
300
|
+
export type InfiniteOrderEdge = {
|
|
301
|
+
__typename?: 'InfiniteOrderEdge';
|
|
302
|
+
cursor: Scalars['String']['output'];
|
|
303
|
+
node: Order;
|
|
304
|
+
};
|
|
305
|
+
export type InfiniteOrdersConnection = {
|
|
306
|
+
__typename?: 'InfiniteOrdersConnection';
|
|
307
|
+
edges: Array<InfiniteOrderEdge>;
|
|
308
|
+
pageInfo: InfinitePageInfo;
|
|
309
|
+
};
|
|
310
|
+
export type InfinitePageInfo = {
|
|
311
|
+
__typename?: 'InfinitePageInfo';
|
|
312
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
313
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
314
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
315
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
316
|
+
};
|
|
317
|
+
export type InfiniteProductEdge = {
|
|
318
|
+
__typename?: 'InfiniteProductEdge';
|
|
319
|
+
cursor: Scalars['String']['output'];
|
|
320
|
+
node: Product;
|
|
321
|
+
};
|
|
322
|
+
export type InfiniteProductsConnection = {
|
|
323
|
+
__typename?: 'InfiniteProductsConnection';
|
|
324
|
+
edges: Array<InfiniteProductEdge>;
|
|
325
|
+
pageInfo: InfinitePageInfo;
|
|
326
|
+
};
|
|
327
|
+
export type InfiniteSellerEdge = {
|
|
328
|
+
__typename?: 'InfiniteSellerEdge';
|
|
329
|
+
cursor: Scalars['String']['output'];
|
|
330
|
+
node: Seller;
|
|
331
|
+
};
|
|
332
|
+
export type InfiniteSellersConnection = {
|
|
333
|
+
__typename?: 'InfiniteSellersConnection';
|
|
334
|
+
edges: Array<InfiniteSellerEdge>;
|
|
335
|
+
pageInfo: InfinitePageInfo;
|
|
336
|
+
};
|
|
337
|
+
export type InfiniteSizeGroupEdge = {
|
|
338
|
+
__typename?: 'InfiniteSizeGroupEdge';
|
|
339
|
+
cursor: Scalars['String']['output'];
|
|
340
|
+
node: SizeGroup;
|
|
341
|
+
};
|
|
342
|
+
export type InfiniteSizesConnection = {
|
|
343
|
+
__typename?: 'InfiniteSizesConnection';
|
|
344
|
+
edges: Array<InfiniteSizeGroupEdge>;
|
|
345
|
+
pageInfo: InfinitePageInfo;
|
|
346
|
+
};
|
|
347
|
+
export type InfiniteTagEdge = {
|
|
348
|
+
__typename?: 'InfiniteTagEdge';
|
|
349
|
+
cursor: Scalars['String']['output'];
|
|
350
|
+
node: Tag;
|
|
351
|
+
};
|
|
352
|
+
export type InfiniteTagsConnection = {
|
|
353
|
+
__typename?: 'InfiniteTagsConnection';
|
|
354
|
+
edges: Array<InfiniteTagEdge>;
|
|
355
|
+
pageInfo: InfinitePageInfo;
|
|
356
|
+
};
|
|
357
|
+
export type InitiateFileUploadInput = {
|
|
358
|
+
meta?: InputMaybe<Scalars['String']['input']>;
|
|
359
|
+
name: Scalars['String']['input'];
|
|
360
|
+
os: Scalars['String']['input'];
|
|
361
|
+
referenceId: Scalars['String']['input'];
|
|
362
|
+
size: Scalars['Int']['input'];
|
|
363
|
+
version: Scalars['String']['input'];
|
|
364
|
+
};
|
|
365
|
+
export type LocalizedText = {
|
|
366
|
+
__typename?: 'LocalizedText';
|
|
367
|
+
locale: Scalars['String']['output'];
|
|
368
|
+
value: Scalars['String']['output'];
|
|
369
|
+
};
|
|
370
|
+
export type Metric = {
|
|
371
|
+
__typename?: 'Metric';
|
|
372
|
+
createdAt: Scalars['DateTime']['output'];
|
|
373
|
+
id: Scalars['ID']['output'];
|
|
374
|
+
name: Scalars['String']['output'];
|
|
375
|
+
symbol: Scalars['String']['output'];
|
|
376
|
+
type: UnitType;
|
|
377
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
378
|
+
};
|
|
379
|
+
export declare enum MetricFieldsEnum {
|
|
380
|
+
CreatedAt = "createdAt",
|
|
381
|
+
Id = "id",
|
|
382
|
+
Name = "name",
|
|
383
|
+
Symbol = "symbol",
|
|
384
|
+
Type = "type",
|
|
385
|
+
UpdatedAt = "updatedAt"
|
|
386
|
+
}
|
|
387
|
+
export type MetricFilter = {
|
|
388
|
+
id?: InputMaybe<IdArrayFilter>;
|
|
389
|
+
name?: InputMaybe<StringArrayFilter>;
|
|
390
|
+
};
|
|
391
|
+
export type MetricSort = {
|
|
392
|
+
field: MetricFieldsEnum;
|
|
393
|
+
order?: InputMaybe<SortOrderEnum>;
|
|
394
|
+
};
|
|
395
|
+
export type Mutation = {
|
|
396
|
+
__typename?: 'Mutation';
|
|
397
|
+
completeFileUpload: File;
|
|
398
|
+
createCustomer: Customer;
|
|
399
|
+
createOrder: Order;
|
|
400
|
+
createProduct: Product;
|
|
401
|
+
createSeller: Seller;
|
|
402
|
+
deleteProduct: Status;
|
|
403
|
+
deleteSeller: Status;
|
|
404
|
+
initiateFileUpload: FileUpload;
|
|
405
|
+
updateCustomer: Customer;
|
|
406
|
+
updateOrder: Order;
|
|
407
|
+
updateProduct: Product;
|
|
408
|
+
updateSeller: Seller;
|
|
409
|
+
};
|
|
410
|
+
export type MutationCompleteFileUploadArgs = {
|
|
411
|
+
data: CompleteFileUploadInput;
|
|
412
|
+
id: Scalars['ID']['input'];
|
|
413
|
+
};
|
|
414
|
+
export type MutationCreateCustomerArgs = {
|
|
415
|
+
data: CreateCustomerInput;
|
|
416
|
+
};
|
|
417
|
+
export type MutationCreateOrderArgs = {
|
|
418
|
+
data: CreateOrderInput;
|
|
419
|
+
};
|
|
420
|
+
export type MutationCreateProductArgs = {
|
|
421
|
+
data: CreateProductInput;
|
|
422
|
+
};
|
|
423
|
+
export type MutationCreateSellerArgs = {
|
|
424
|
+
data: CreateSellerInput;
|
|
425
|
+
};
|
|
426
|
+
export type MutationDeleteProductArgs = {
|
|
427
|
+
id: Scalars['ID']['input'];
|
|
428
|
+
};
|
|
429
|
+
export type MutationDeleteSellerArgs = {
|
|
430
|
+
id: Scalars['ID']['input'];
|
|
431
|
+
};
|
|
432
|
+
export type MutationInitiateFileUploadArgs = {
|
|
433
|
+
data: InitiateFileUploadInput;
|
|
434
|
+
};
|
|
435
|
+
export type MutationUpdateCustomerArgs = {
|
|
436
|
+
data: UpdateCustomerInput;
|
|
437
|
+
id: Scalars['ID']['input'];
|
|
438
|
+
};
|
|
439
|
+
export type MutationUpdateOrderArgs = {
|
|
440
|
+
data: UpdateOrderInput;
|
|
441
|
+
id: Scalars['ID']['input'];
|
|
442
|
+
};
|
|
443
|
+
export type MutationUpdateProductArgs = {
|
|
444
|
+
data: UpdateProductInput;
|
|
445
|
+
id: Scalars['ID']['input'];
|
|
446
|
+
};
|
|
447
|
+
export type MutationUpdateSellerArgs = {
|
|
448
|
+
data: UpdateSellerInput;
|
|
449
|
+
id: Scalars['ID']['input'];
|
|
450
|
+
};
|
|
451
|
+
export type Order = {
|
|
452
|
+
__typename?: 'Order';
|
|
453
|
+
createdAt: Scalars['DateTime']['output'];
|
|
454
|
+
customer: Customer;
|
|
455
|
+
id: Scalars['ID']['output'];
|
|
456
|
+
total: Scalars['Int']['output'];
|
|
457
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
458
|
+
};
|
|
459
|
+
export declare enum OrderFieldsEnum {
|
|
460
|
+
CreatedAt = "createdAt",
|
|
461
|
+
Id = "id",
|
|
462
|
+
Total = "total",
|
|
463
|
+
UpdatedAt = "updatedAt"
|
|
464
|
+
}
|
|
465
|
+
export type OrderFilter = {
|
|
466
|
+
id?: InputMaybe<IdArrayFilter>;
|
|
467
|
+
name?: InputMaybe<StringArrayFilter>;
|
|
468
|
+
};
|
|
469
|
+
export type OrderSort = {
|
|
470
|
+
field: OrderFieldsEnum;
|
|
471
|
+
order?: InputMaybe<SortOrderEnum>;
|
|
472
|
+
};
|
|
473
|
+
export type PaginatedAttributeEdge = {
|
|
474
|
+
__typename?: 'PaginatedAttributeEdge';
|
|
475
|
+
cursor: Scalars['String']['output'];
|
|
476
|
+
node: Attribute;
|
|
477
|
+
};
|
|
478
|
+
export type PaginatedAttributesConnection = {
|
|
479
|
+
__typename?: 'PaginatedAttributesConnection';
|
|
480
|
+
edges: Array<PaginatedAttributeEdge>;
|
|
481
|
+
pageInfo: PaginatedPageInfo;
|
|
482
|
+
};
|
|
483
|
+
export type PaginatedBrandEdge = {
|
|
484
|
+
__typename?: 'PaginatedBrandEdge';
|
|
485
|
+
cursor: Scalars['String']['output'];
|
|
486
|
+
node: Brand;
|
|
487
|
+
};
|
|
488
|
+
export type PaginatedBrandsConnection = {
|
|
489
|
+
__typename?: 'PaginatedBrandsConnection';
|
|
490
|
+
edges: Array<PaginatedBrandEdge>;
|
|
491
|
+
pageInfo: PaginatedPageInfo;
|
|
492
|
+
};
|
|
493
|
+
export type PaginatedCategoriesConnection = {
|
|
494
|
+
__typename?: 'PaginatedCategoriesConnection';
|
|
495
|
+
edges: Array<PaginatedCategoryEdge>;
|
|
496
|
+
pageInfo: PaginatedPageInfo;
|
|
497
|
+
};
|
|
498
|
+
export type PaginatedCategoryEdge = {
|
|
499
|
+
__typename?: 'PaginatedCategoryEdge';
|
|
500
|
+
cursor: Scalars['String']['output'];
|
|
501
|
+
node: Category;
|
|
502
|
+
};
|
|
503
|
+
export type PaginatedColorEdge = {
|
|
504
|
+
__typename?: 'PaginatedColorEdge';
|
|
505
|
+
cursor: Scalars['String']['output'];
|
|
506
|
+
node: Color;
|
|
507
|
+
};
|
|
508
|
+
export type PaginatedColorsConnection = {
|
|
509
|
+
__typename?: 'PaginatedColorsConnection';
|
|
510
|
+
edges: Array<PaginatedColorEdge>;
|
|
511
|
+
pageInfo: PaginatedPageInfo;
|
|
512
|
+
};
|
|
513
|
+
export type PaginatedCustomerEdge = {
|
|
514
|
+
__typename?: 'PaginatedCustomerEdge';
|
|
515
|
+
cursor: Scalars['String']['output'];
|
|
516
|
+
node: Customer;
|
|
517
|
+
};
|
|
518
|
+
export type PaginatedCustomersConnection = {
|
|
519
|
+
__typename?: 'PaginatedCustomersConnection';
|
|
520
|
+
edges: Array<PaginatedCustomerEdge>;
|
|
521
|
+
pageInfo: PaginatedPageInfo;
|
|
522
|
+
};
|
|
523
|
+
export type PaginatedMetricEdge = {
|
|
524
|
+
__typename?: 'PaginatedMetricEdge';
|
|
525
|
+
cursor: Scalars['String']['output'];
|
|
526
|
+
node: Metric;
|
|
527
|
+
};
|
|
528
|
+
export type PaginatedMetricsConnection = {
|
|
529
|
+
__typename?: 'PaginatedMetricsConnection';
|
|
530
|
+
edges: Array<PaginatedMetricEdge>;
|
|
531
|
+
pageInfo: PaginatedPageInfo;
|
|
532
|
+
};
|
|
533
|
+
export type PaginatedOrderEdge = {
|
|
534
|
+
__typename?: 'PaginatedOrderEdge';
|
|
535
|
+
cursor: Scalars['String']['output'];
|
|
536
|
+
node: Order;
|
|
537
|
+
};
|
|
538
|
+
export type PaginatedOrdersConnection = {
|
|
539
|
+
__typename?: 'PaginatedOrdersConnection';
|
|
540
|
+
edges: Array<PaginatedOrderEdge>;
|
|
541
|
+
pageInfo: PaginatedPageInfo;
|
|
542
|
+
};
|
|
543
|
+
export type PaginatedPageInfo = {
|
|
544
|
+
__typename?: 'PaginatedPageInfo';
|
|
545
|
+
currentPage: Scalars['Float']['output'];
|
|
546
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
547
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
548
|
+
totalEdges: Scalars['Float']['output'];
|
|
549
|
+
totalPages: Scalars['Float']['output'];
|
|
550
|
+
};
|
|
551
|
+
export type PaginatedProductEdge = {
|
|
552
|
+
__typename?: 'PaginatedProductEdge';
|
|
553
|
+
cursor: Scalars['String']['output'];
|
|
554
|
+
node: Product;
|
|
555
|
+
};
|
|
556
|
+
export type PaginatedProductsConnection = {
|
|
557
|
+
__typename?: 'PaginatedProductsConnection';
|
|
558
|
+
edges: Array<PaginatedProductEdge>;
|
|
559
|
+
pageInfo: PaginatedPageInfo;
|
|
560
|
+
};
|
|
561
|
+
export type PaginatedSellerEdge = {
|
|
562
|
+
__typename?: 'PaginatedSellerEdge';
|
|
563
|
+
cursor: Scalars['String']['output'];
|
|
564
|
+
node: Seller;
|
|
565
|
+
};
|
|
566
|
+
export type PaginatedSellersConnection = {
|
|
567
|
+
__typename?: 'PaginatedSellersConnection';
|
|
568
|
+
edges: Array<PaginatedSellerEdge>;
|
|
569
|
+
pageInfo: PaginatedPageInfo;
|
|
570
|
+
};
|
|
571
|
+
export type PaginatedSizeGroupEdge = {
|
|
572
|
+
__typename?: 'PaginatedSizeGroupEdge';
|
|
573
|
+
cursor: Scalars['String']['output'];
|
|
574
|
+
node: SizeGroup;
|
|
575
|
+
};
|
|
576
|
+
export type PaginatedSizesConnection = {
|
|
577
|
+
__typename?: 'PaginatedSizesConnection';
|
|
578
|
+
edges: Array<PaginatedSizeGroupEdge>;
|
|
579
|
+
pageInfo: PaginatedPageInfo;
|
|
580
|
+
};
|
|
581
|
+
export type PaginatedTagEdge = {
|
|
582
|
+
__typename?: 'PaginatedTagEdge';
|
|
583
|
+
cursor: Scalars['String']['output'];
|
|
584
|
+
node: Tag;
|
|
585
|
+
};
|
|
586
|
+
export type PaginatedTagsConnection = {
|
|
587
|
+
__typename?: 'PaginatedTagsConnection';
|
|
588
|
+
edges: Array<PaginatedTagEdge>;
|
|
589
|
+
pageInfo: PaginatedPageInfo;
|
|
590
|
+
};
|
|
591
|
+
export type Product = {
|
|
592
|
+
__typename?: 'Product';
|
|
593
|
+
active: Scalars['Boolean']['output'];
|
|
594
|
+
barcode?: Maybe<Scalars['String']['output']>;
|
|
595
|
+
brand?: Maybe<Brand>;
|
|
596
|
+
category: Category;
|
|
597
|
+
createdAt: Scalars['DateTime']['output'];
|
|
598
|
+
deleted: Scalars['Boolean']['output'];
|
|
599
|
+
deletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
600
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
601
|
+
featured: Scalars['Boolean']['output'];
|
|
602
|
+
id: Scalars['ID']['output'];
|
|
603
|
+
name: Scalars['String']['output'];
|
|
604
|
+
price: Scalars['Float']['output'];
|
|
605
|
+
publishedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
606
|
+
seller?: Maybe<Seller>;
|
|
607
|
+
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
608
|
+
sku?: Maybe<Scalars['String']['output']>;
|
|
609
|
+
slug: Scalars['String']['output'];
|
|
610
|
+
soldCount: Scalars['Int']['output'];
|
|
611
|
+
status: Scalars['String']['output'];
|
|
612
|
+
stock: Scalars['Int']['output'];
|
|
613
|
+
todayDeal: Scalars['Boolean']['output'];
|
|
614
|
+
type: Scalars['String']['output'];
|
|
615
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
616
|
+
views: Scalars['Int']['output'];
|
|
617
|
+
};
|
|
618
|
+
export declare enum ProductFieldsEnum {
|
|
619
|
+
CreatedAt = "createdAt",
|
|
620
|
+
Id = "id",
|
|
621
|
+
Name = "name",
|
|
622
|
+
UpdatedAt = "updatedAt"
|
|
623
|
+
}
|
|
624
|
+
export type ProductFilter = {
|
|
625
|
+
id?: InputMaybe<IdArrayFilter>;
|
|
626
|
+
name?: InputMaybe<StringArrayFilter>;
|
|
627
|
+
};
|
|
628
|
+
export type ProductSort = {
|
|
629
|
+
field: ProductFieldsEnum;
|
|
630
|
+
order?: InputMaybe<SortOrderEnum>;
|
|
631
|
+
};
|
|
632
|
+
export type Query = {
|
|
633
|
+
__typename?: 'Query';
|
|
634
|
+
attribute?: Maybe<Array<Attribute>>;
|
|
635
|
+
brand?: Maybe<Array<Brand>>;
|
|
636
|
+
customer?: Maybe<Array<Customer>>;
|
|
637
|
+
file: File;
|
|
638
|
+
infiniteAttributes: InfiniteAttributesConnection;
|
|
639
|
+
infiniteBrands: InfiniteBrandsConnection;
|
|
640
|
+
infiniteCategories: InfiniteCategoriesConnection;
|
|
641
|
+
infiniteColors: InfiniteColorsConnection;
|
|
642
|
+
infiniteCustomers: InfiniteCustomersConnection;
|
|
643
|
+
infiniteMetrics: InfiniteMetricsConnection;
|
|
644
|
+
infiniteOrders: InfiniteOrdersConnection;
|
|
645
|
+
infiniteProducts: InfiniteProductsConnection;
|
|
646
|
+
infiniteSellers: InfiniteSellersConnection;
|
|
647
|
+
infiniteSizes: InfiniteSizesConnection;
|
|
648
|
+
infiniteTags: InfiniteTagsConnection;
|
|
649
|
+
metric?: Maybe<Array<Metric>>;
|
|
650
|
+
order?: Maybe<Array<Order>>;
|
|
651
|
+
paginatedAttributes?: Maybe<PaginatedAttributesConnection>;
|
|
652
|
+
paginatedBrands?: Maybe<PaginatedBrandsConnection>;
|
|
653
|
+
paginatedCategories?: Maybe<PaginatedCategoriesConnection>;
|
|
654
|
+
paginatedColors?: Maybe<PaginatedColorsConnection>;
|
|
655
|
+
paginatedCustomers?: Maybe<PaginatedCustomersConnection>;
|
|
656
|
+
paginatedMetrics?: Maybe<PaginatedMetricsConnection>;
|
|
657
|
+
paginatedOrders?: Maybe<PaginatedOrdersConnection>;
|
|
658
|
+
paginatedProducts?: Maybe<PaginatedProductsConnection>;
|
|
659
|
+
paginatedSellers?: Maybe<PaginatedSellersConnection>;
|
|
660
|
+
paginatedSizes?: Maybe<PaginatedSizesConnection>;
|
|
661
|
+
paginatedTags?: Maybe<PaginatedTagsConnection>;
|
|
662
|
+
product?: Maybe<Array<Product>>;
|
|
663
|
+
seller?: Maybe<Seller>;
|
|
664
|
+
size?: Maybe<Array<SizeGroup>>;
|
|
665
|
+
tag?: Maybe<Array<Tag>>;
|
|
666
|
+
};
|
|
667
|
+
export type QueryAttributeArgs = {
|
|
668
|
+
id: Scalars['ID']['input'];
|
|
669
|
+
};
|
|
670
|
+
export type QueryBrandArgs = {
|
|
671
|
+
id: Scalars['ID']['input'];
|
|
672
|
+
};
|
|
673
|
+
export type QueryCustomerArgs = {
|
|
674
|
+
id: Scalars['ID']['input'];
|
|
675
|
+
};
|
|
676
|
+
export type QueryFileArgs = {
|
|
677
|
+
id: Scalars['ID']['input'];
|
|
678
|
+
};
|
|
679
|
+
export type QueryInfiniteAttributesArgs = {
|
|
680
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
681
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
682
|
+
filter?: InputMaybe<AttributeFilter>;
|
|
683
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
684
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
685
|
+
sort?: InputMaybe<Array<AttributeSort>>;
|
|
686
|
+
};
|
|
687
|
+
export type QueryInfiniteBrandsArgs = {
|
|
688
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
689
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
690
|
+
filter?: InputMaybe<BrandFilter>;
|
|
691
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
692
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
693
|
+
sort?: InputMaybe<Array<BrandSort>>;
|
|
694
|
+
};
|
|
695
|
+
export type QueryInfiniteCategoriesArgs = {
|
|
696
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
697
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
698
|
+
filter?: InputMaybe<CategoryFilter>;
|
|
699
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
700
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
701
|
+
sort?: InputMaybe<Array<CategorySort>>;
|
|
702
|
+
};
|
|
703
|
+
export type QueryInfiniteColorsArgs = {
|
|
704
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
705
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
706
|
+
filter?: InputMaybe<ColorFilter>;
|
|
707
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
708
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
709
|
+
sort?: InputMaybe<Array<ColorSort>>;
|
|
710
|
+
};
|
|
711
|
+
export type QueryInfiniteCustomersArgs = {
|
|
712
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
713
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
714
|
+
filter?: InputMaybe<CustomerFilter>;
|
|
715
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
716
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
717
|
+
sort?: InputMaybe<Array<CustomerSort>>;
|
|
718
|
+
};
|
|
719
|
+
export type QueryInfiniteMetricsArgs = {
|
|
720
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
721
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
722
|
+
filter?: InputMaybe<MetricFilter>;
|
|
723
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
724
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
725
|
+
sort?: InputMaybe<Array<MetricSort>>;
|
|
726
|
+
};
|
|
727
|
+
export type QueryInfiniteOrdersArgs = {
|
|
728
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
729
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
730
|
+
filter?: InputMaybe<OrderFilter>;
|
|
731
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
732
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
733
|
+
sort?: InputMaybe<Array<OrderSort>>;
|
|
734
|
+
};
|
|
735
|
+
export type QueryInfiniteProductsArgs = {
|
|
736
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
737
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
738
|
+
filter?: InputMaybe<ProductFilter>;
|
|
739
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
740
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
741
|
+
sort?: InputMaybe<Array<ProductSort>>;
|
|
742
|
+
};
|
|
743
|
+
export type QueryInfiniteSellersArgs = {
|
|
744
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
745
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
746
|
+
filter?: InputMaybe<SellerFilter>;
|
|
747
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
748
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
749
|
+
sort?: InputMaybe<Array<SellerSort>>;
|
|
750
|
+
};
|
|
751
|
+
export type QueryInfiniteSizesArgs = {
|
|
752
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
753
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
754
|
+
filter?: InputMaybe<SizeFilter>;
|
|
755
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
756
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
757
|
+
sort?: InputMaybe<Array<SizeGroupSort>>;
|
|
758
|
+
};
|
|
759
|
+
export type QueryInfiniteTagsArgs = {
|
|
760
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
761
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
762
|
+
filter?: InputMaybe<TagFilter>;
|
|
763
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
764
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
765
|
+
sort?: InputMaybe<Array<TagSort>>;
|
|
766
|
+
};
|
|
767
|
+
export type QueryMetricArgs = {
|
|
768
|
+
id: Scalars['ID']['input'];
|
|
769
|
+
};
|
|
770
|
+
export type QueryOrderArgs = {
|
|
771
|
+
id: Scalars['ID']['input'];
|
|
772
|
+
};
|
|
773
|
+
export type QueryPaginatedAttributesArgs = {
|
|
774
|
+
filter?: InputMaybe<AttributeFilter>;
|
|
775
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
776
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
777
|
+
sort?: InputMaybe<Array<AttributeSort>>;
|
|
778
|
+
};
|
|
779
|
+
export type QueryPaginatedBrandsArgs = {
|
|
780
|
+
filter?: InputMaybe<BrandFilter>;
|
|
781
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
782
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
783
|
+
sort?: InputMaybe<Array<BrandSort>>;
|
|
784
|
+
};
|
|
785
|
+
export type QueryPaginatedCategoriesArgs = {
|
|
786
|
+
filter?: InputMaybe<CategoryFilter>;
|
|
787
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
788
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
789
|
+
sort?: InputMaybe<Array<CategorySort>>;
|
|
790
|
+
};
|
|
791
|
+
export type QueryPaginatedColorsArgs = {
|
|
792
|
+
filter?: InputMaybe<ColorFilter>;
|
|
793
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
794
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
795
|
+
sort?: InputMaybe<Array<ColorSort>>;
|
|
796
|
+
};
|
|
797
|
+
export type QueryPaginatedCustomersArgs = {
|
|
798
|
+
filter?: InputMaybe<CustomerFilter>;
|
|
799
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
800
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
801
|
+
sort?: InputMaybe<Array<CustomerSort>>;
|
|
802
|
+
};
|
|
803
|
+
export type QueryPaginatedMetricsArgs = {
|
|
804
|
+
filter?: InputMaybe<MetricFilter>;
|
|
805
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
806
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
807
|
+
sort?: InputMaybe<Array<MetricSort>>;
|
|
808
|
+
};
|
|
809
|
+
export type QueryPaginatedOrdersArgs = {
|
|
810
|
+
filter?: InputMaybe<OrderFilter>;
|
|
811
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
812
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
813
|
+
sort?: InputMaybe<Array<OrderSort>>;
|
|
814
|
+
};
|
|
815
|
+
export type QueryPaginatedProductsArgs = {
|
|
816
|
+
filter?: InputMaybe<ProductFilter>;
|
|
817
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
818
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
819
|
+
sort?: InputMaybe<Array<ProductSort>>;
|
|
820
|
+
};
|
|
821
|
+
export type QueryPaginatedSellersArgs = {
|
|
822
|
+
filter?: InputMaybe<SellerFilter>;
|
|
823
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
824
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
825
|
+
sort?: InputMaybe<Array<SellerSort>>;
|
|
826
|
+
};
|
|
827
|
+
export type QueryPaginatedSizesArgs = {
|
|
828
|
+
filter?: InputMaybe<SizeFilter>;
|
|
829
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
830
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
831
|
+
sort?: InputMaybe<Array<SizeGroupSort>>;
|
|
832
|
+
};
|
|
833
|
+
export type QueryPaginatedTagsArgs = {
|
|
834
|
+
filter?: InputMaybe<TagFilter>;
|
|
835
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
836
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
837
|
+
sort?: InputMaybe<Array<TagSort>>;
|
|
838
|
+
};
|
|
839
|
+
export type QueryProductArgs = {
|
|
840
|
+
id: Scalars['ID']['input'];
|
|
841
|
+
};
|
|
842
|
+
export type QuerySellerArgs = {
|
|
843
|
+
id: Scalars['ID']['input'];
|
|
844
|
+
};
|
|
845
|
+
export type QuerySizeArgs = {
|
|
846
|
+
id: Scalars['ID']['input'];
|
|
847
|
+
};
|
|
848
|
+
export type QueryTagArgs = {
|
|
849
|
+
id: Scalars['ID']['input'];
|
|
850
|
+
};
|
|
851
|
+
export type Seller = {
|
|
852
|
+
__typename?: 'Seller';
|
|
853
|
+
active: Scalars['Boolean']['output'];
|
|
854
|
+
createdAt: Scalars['DateTime']['output'];
|
|
855
|
+
createdById?: Maybe<Scalars['ID']['output']>;
|
|
856
|
+
deleted: Scalars['Boolean']['output'];
|
|
857
|
+
deletedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
858
|
+
deletedById?: Maybe<Scalars['ID']['output']>;
|
|
859
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
860
|
+
id: Scalars['ID']['output'];
|
|
861
|
+
logo?: Maybe<File>;
|
|
862
|
+
name: Scalars['String']['output'];
|
|
863
|
+
orderNumber: Scalars['Int']['output'];
|
|
864
|
+
rating?: Maybe<Scalars['Float']['output']>;
|
|
865
|
+
slug: Scalars['String']['output'];
|
|
866
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
867
|
+
updatedById?: Maybe<Scalars['ID']['output']>;
|
|
868
|
+
verified: Scalars['Boolean']['output'];
|
|
869
|
+
};
|
|
870
|
+
export declare enum SellerFieldsEnum {
|
|
871
|
+
CreatedAt = "createdAt",
|
|
872
|
+
Id = "id",
|
|
873
|
+
Name = "name",
|
|
874
|
+
UpdatedAt = "updatedAt"
|
|
875
|
+
}
|
|
876
|
+
export type SellerFilter = {
|
|
877
|
+
id?: InputMaybe<IdArrayFilter>;
|
|
878
|
+
name?: InputMaybe<StringArrayFilter>;
|
|
879
|
+
};
|
|
880
|
+
export type SellerSort = {
|
|
881
|
+
field: SellerFieldsEnum;
|
|
882
|
+
order?: InputMaybe<SortOrderEnum>;
|
|
883
|
+
};
|
|
884
|
+
export declare enum SizeFieldsEnum {
|
|
885
|
+
CreatedAt = "createdAt",
|
|
886
|
+
Id = "id",
|
|
887
|
+
Title = "title",
|
|
888
|
+
UnitCreatedAt = "unit___createdAt",
|
|
889
|
+
UnitId = "unit___id",
|
|
890
|
+
UnitName = "unit___name",
|
|
891
|
+
UnitSymbol = "unit___symbol",
|
|
892
|
+
UnitType = "unit___type",
|
|
893
|
+
UnitUpdatedAt = "unit___updatedAt",
|
|
894
|
+
UpdatedAt = "updatedAt",
|
|
895
|
+
ValuesId = "values___id",
|
|
896
|
+
ValuesValue = "values___value"
|
|
897
|
+
}
|
|
898
|
+
export type SizeFilter = {
|
|
899
|
+
id?: InputMaybe<IdArrayFilter>;
|
|
900
|
+
name?: InputMaybe<StringArrayFilter>;
|
|
901
|
+
};
|
|
902
|
+
export type SizeGroup = {
|
|
903
|
+
__typename?: 'SizeGroup';
|
|
904
|
+
createdAt: Scalars['DateTime']['output'];
|
|
905
|
+
id: Scalars['ID']['output'];
|
|
906
|
+
title: Scalars['String']['output'];
|
|
907
|
+
unit: Metric;
|
|
908
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
909
|
+
values: Array<SizeValue>;
|
|
910
|
+
};
|
|
911
|
+
export type SizeGroupSort = {
|
|
912
|
+
field: SizeFieldsEnum;
|
|
913
|
+
order?: InputMaybe<SortOrderEnum>;
|
|
914
|
+
};
|
|
915
|
+
export type SizeValue = {
|
|
916
|
+
__typename?: 'SizeValue';
|
|
917
|
+
id: Scalars['ID']['output'];
|
|
918
|
+
value: Scalars['String']['output'];
|
|
919
|
+
};
|
|
920
|
+
export declare enum SortOrderEnum {
|
|
921
|
+
Asc = "ASC",
|
|
922
|
+
Desc = "DESC"
|
|
923
|
+
}
|
|
924
|
+
export type Status = {
|
|
925
|
+
__typename?: 'Status';
|
|
926
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
927
|
+
status: StatusEnum;
|
|
928
|
+
};
|
|
929
|
+
export declare enum StatusEnum {
|
|
930
|
+
Error = "ERROR",
|
|
931
|
+
Ok = "OK"
|
|
932
|
+
}
|
|
933
|
+
export type StringArrayFilter = {
|
|
934
|
+
every?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
935
|
+
none?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
936
|
+
some?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
937
|
+
};
|
|
938
|
+
export type Subscription = {
|
|
939
|
+
__typename?: 'Subscription';
|
|
940
|
+
subscribeFileUpload: File;
|
|
941
|
+
};
|
|
942
|
+
export type SubscriptionSubscribeFileUploadArgs = {
|
|
943
|
+
id: Scalars['ID']['input'];
|
|
944
|
+
};
|
|
945
|
+
export type Tag = {
|
|
946
|
+
__typename?: 'Tag';
|
|
947
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
948
|
+
createdAt: Scalars['DateTime']['output'];
|
|
949
|
+
id: Scalars['ID']['output'];
|
|
950
|
+
name: Scalars['String']['output'];
|
|
951
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
952
|
+
};
|
|
953
|
+
export declare enum TagFieldsEnum {
|
|
954
|
+
CreatedAt = "createdAt",
|
|
955
|
+
Id = "id",
|
|
956
|
+
Name = "name",
|
|
957
|
+
UpdatedAt = "updatedAt"
|
|
958
|
+
}
|
|
959
|
+
export type TagFilter = {
|
|
960
|
+
id?: InputMaybe<IdArrayFilter>;
|
|
961
|
+
name?: InputMaybe<StringArrayFilter>;
|
|
962
|
+
};
|
|
963
|
+
export type TagSort = {
|
|
964
|
+
field: TagFieldsEnum;
|
|
965
|
+
order?: InputMaybe<SortOrderEnum>;
|
|
966
|
+
};
|
|
967
|
+
export declare enum UnitType {
|
|
968
|
+
Count = "COUNT",
|
|
969
|
+
Length = "LENGTH",
|
|
970
|
+
Volume = "VOLUME",
|
|
971
|
+
Weight = "WEIGHT"
|
|
972
|
+
}
|
|
973
|
+
export type UpdateCustomerInput = {
|
|
974
|
+
fullName?: InputMaybe<Scalars['String']['input']>;
|
|
975
|
+
};
|
|
976
|
+
export type UpdateOrderInput = {
|
|
977
|
+
total?: InputMaybe<Scalars['Float']['input']>;
|
|
978
|
+
};
|
|
979
|
+
export type UpdateProductInput = {
|
|
980
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
981
|
+
};
|
|
982
|
+
export type UpdateSellerInput = {
|
|
983
|
+
active?: InputMaybe<Scalars['Boolean']['input']>;
|
|
984
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
985
|
+
orderNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
986
|
+
slug?: InputMaybe<Scalars['String']['input']>;
|
|
987
|
+
verified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
988
|
+
};
|
|
989
|
+
export type AttributeFragmentFragment = {
|
|
990
|
+
__typename?: 'Attribute';
|
|
991
|
+
id: string;
|
|
992
|
+
name: string;
|
|
993
|
+
createdAt: any;
|
|
994
|
+
updatedAt: any;
|
|
995
|
+
};
|
|
996
|
+
export type InfiniteAttributesQueryVariables = Exact<{
|
|
997
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
998
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
999
|
+
filter?: InputMaybe<AttributeFilter>;
|
|
1000
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1001
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1002
|
+
sort?: InputMaybe<Array<AttributeSort> | AttributeSort>;
|
|
1003
|
+
}>;
|
|
1004
|
+
export type InfiniteAttributesQuery = {
|
|
1005
|
+
__typename?: 'Query';
|
|
1006
|
+
infiniteAttributes: {
|
|
1007
|
+
__typename?: 'InfiniteAttributesConnection';
|
|
1008
|
+
edges: Array<{
|
|
1009
|
+
__typename?: 'InfiniteAttributeEdge';
|
|
1010
|
+
cursor: string;
|
|
1011
|
+
node: {
|
|
1012
|
+
__typename?: 'Attribute';
|
|
1013
|
+
id: string;
|
|
1014
|
+
name: string;
|
|
1015
|
+
createdAt: any;
|
|
1016
|
+
updatedAt: any;
|
|
1017
|
+
};
|
|
1018
|
+
}>;
|
|
1019
|
+
pageInfo: {
|
|
1020
|
+
__typename?: 'InfinitePageInfo';
|
|
1021
|
+
endCursor?: string | null;
|
|
1022
|
+
hasNextPage: boolean;
|
|
1023
|
+
hasPreviousPage: boolean;
|
|
1024
|
+
startCursor?: string | null;
|
|
1025
|
+
};
|
|
1026
|
+
};
|
|
1027
|
+
};
|
|
1028
|
+
export type PaginatedAttributesQueryVariables = Exact<{
|
|
1029
|
+
filter?: InputMaybe<AttributeFilter>;
|
|
1030
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1031
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1032
|
+
sort?: InputMaybe<Array<AttributeSort> | AttributeSort>;
|
|
1033
|
+
}>;
|
|
1034
|
+
export type PaginatedAttributesQuery = {
|
|
1035
|
+
__typename?: 'Query';
|
|
1036
|
+
paginatedAttributes?: {
|
|
1037
|
+
__typename?: 'PaginatedAttributesConnection';
|
|
1038
|
+
edges: Array<{
|
|
1039
|
+
__typename?: 'PaginatedAttributeEdge';
|
|
1040
|
+
cursor: string;
|
|
1041
|
+
node: {
|
|
1042
|
+
__typename?: 'Attribute';
|
|
1043
|
+
id: string;
|
|
1044
|
+
name: string;
|
|
1045
|
+
createdAt: any;
|
|
1046
|
+
updatedAt: any;
|
|
1047
|
+
};
|
|
1048
|
+
}>;
|
|
1049
|
+
pageInfo: {
|
|
1050
|
+
__typename?: 'PaginatedPageInfo';
|
|
1051
|
+
currentPage: number;
|
|
1052
|
+
hasNextPage: boolean;
|
|
1053
|
+
hasPreviousPage: boolean;
|
|
1054
|
+
totalEdges: number;
|
|
1055
|
+
totalPages: number;
|
|
1056
|
+
};
|
|
1057
|
+
} | null;
|
|
1058
|
+
};
|
|
1059
|
+
export type BrandFragmentFragment = {
|
|
1060
|
+
__typename?: 'Brand';
|
|
1061
|
+
id: string;
|
|
1062
|
+
name: string;
|
|
1063
|
+
active?: boolean | null;
|
|
1064
|
+
description?: string | null;
|
|
1065
|
+
orderNumber: number;
|
|
1066
|
+
slug: string;
|
|
1067
|
+
logo?: {
|
|
1068
|
+
__typename?: 'File';
|
|
1069
|
+
url?: string | null;
|
|
1070
|
+
} | null;
|
|
1071
|
+
};
|
|
1072
|
+
export type InfiniteBrandsQueryVariables = Exact<{
|
|
1073
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1074
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1075
|
+
filter?: InputMaybe<BrandFilter>;
|
|
1076
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1077
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1078
|
+
sort?: InputMaybe<Array<BrandSort> | BrandSort>;
|
|
1079
|
+
withLogo?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1080
|
+
}>;
|
|
1081
|
+
export type InfiniteBrandsQuery = {
|
|
1082
|
+
__typename?: 'Query';
|
|
1083
|
+
infiniteBrands: {
|
|
1084
|
+
__typename?: 'InfiniteBrandsConnection';
|
|
1085
|
+
edges: Array<{
|
|
1086
|
+
__typename?: 'InfiniteBrandEdge';
|
|
1087
|
+
cursor: string;
|
|
1088
|
+
node: {
|
|
1089
|
+
__typename?: 'Brand';
|
|
1090
|
+
id: string;
|
|
1091
|
+
name: string;
|
|
1092
|
+
active?: boolean | null;
|
|
1093
|
+
description?: string | null;
|
|
1094
|
+
orderNumber: number;
|
|
1095
|
+
slug: string;
|
|
1096
|
+
logo?: {
|
|
1097
|
+
__typename?: 'File';
|
|
1098
|
+
url?: string | null;
|
|
1099
|
+
createdAt: any;
|
|
1100
|
+
id: string;
|
|
1101
|
+
name: string;
|
|
1102
|
+
size?: number | null;
|
|
1103
|
+
status: FileStatusEnum;
|
|
1104
|
+
type?: string | null;
|
|
1105
|
+
updatedAt: any;
|
|
1106
|
+
thumbnails: {
|
|
1107
|
+
__typename?: 'FileThumbnails';
|
|
1108
|
+
thumbnail450Url?: string | null;
|
|
1109
|
+
thumbnail900Url?: string | null;
|
|
1110
|
+
};
|
|
1111
|
+
} | null;
|
|
1112
|
+
};
|
|
1113
|
+
}>;
|
|
1114
|
+
pageInfo: {
|
|
1115
|
+
__typename?: 'InfinitePageInfo';
|
|
1116
|
+
endCursor?: string | null;
|
|
1117
|
+
hasNextPage: boolean;
|
|
1118
|
+
hasPreviousPage: boolean;
|
|
1119
|
+
startCursor?: string | null;
|
|
1120
|
+
};
|
|
1121
|
+
};
|
|
1122
|
+
};
|
|
1123
|
+
export type PaginatedBrandsQueryVariables = Exact<{
|
|
1124
|
+
filter?: InputMaybe<BrandFilter>;
|
|
1125
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1126
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1127
|
+
sort?: InputMaybe<Array<BrandSort> | BrandSort>;
|
|
1128
|
+
withLogo?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1129
|
+
}>;
|
|
1130
|
+
export type PaginatedBrandsQuery = {
|
|
1131
|
+
__typename?: 'Query';
|
|
1132
|
+
paginatedBrands?: {
|
|
1133
|
+
__typename?: 'PaginatedBrandsConnection';
|
|
1134
|
+
edges: Array<{
|
|
1135
|
+
__typename?: 'PaginatedBrandEdge';
|
|
1136
|
+
cursor: string;
|
|
1137
|
+
node: {
|
|
1138
|
+
__typename?: 'Brand';
|
|
1139
|
+
id: string;
|
|
1140
|
+
name: string;
|
|
1141
|
+
active?: boolean | null;
|
|
1142
|
+
description?: string | null;
|
|
1143
|
+
orderNumber: number;
|
|
1144
|
+
slug: string;
|
|
1145
|
+
logo?: {
|
|
1146
|
+
__typename?: 'File';
|
|
1147
|
+
url?: string | null;
|
|
1148
|
+
createdAt: any;
|
|
1149
|
+
id: string;
|
|
1150
|
+
name: string;
|
|
1151
|
+
size?: number | null;
|
|
1152
|
+
status: FileStatusEnum;
|
|
1153
|
+
type?: string | null;
|
|
1154
|
+
updatedAt: any;
|
|
1155
|
+
thumbnails: {
|
|
1156
|
+
__typename?: 'FileThumbnails';
|
|
1157
|
+
thumbnail450Url?: string | null;
|
|
1158
|
+
thumbnail900Url?: string | null;
|
|
1159
|
+
};
|
|
1160
|
+
} | null;
|
|
1161
|
+
};
|
|
1162
|
+
}>;
|
|
1163
|
+
pageInfo: {
|
|
1164
|
+
__typename?: 'PaginatedPageInfo';
|
|
1165
|
+
currentPage: number;
|
|
1166
|
+
hasNextPage: boolean;
|
|
1167
|
+
hasPreviousPage: boolean;
|
|
1168
|
+
totalEdges: number;
|
|
1169
|
+
totalPages: number;
|
|
1170
|
+
};
|
|
1171
|
+
} | null;
|
|
1172
|
+
};
|
|
1173
|
+
export type CategoryFragmentFragment = {
|
|
1174
|
+
__typename?: 'Category';
|
|
1175
|
+
id: string;
|
|
1176
|
+
name: string;
|
|
1177
|
+
description?: string | null;
|
|
1178
|
+
slug: string;
|
|
1179
|
+
createdAt: any;
|
|
1180
|
+
updatedAt: any;
|
|
1181
|
+
names?: Array<{
|
|
1182
|
+
__typename?: 'LocalizedText';
|
|
1183
|
+
locale: string;
|
|
1184
|
+
value: string;
|
|
1185
|
+
}> | null;
|
|
1186
|
+
};
|
|
1187
|
+
export type InfiniteCategoriesQueryVariables = Exact<{
|
|
1188
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1189
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1190
|
+
filter?: InputMaybe<CategoryFilter>;
|
|
1191
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1192
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1193
|
+
sort?: InputMaybe<Array<CategorySort> | CategorySort>;
|
|
1194
|
+
withChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1195
|
+
withParent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1196
|
+
}>;
|
|
1197
|
+
export type InfiniteCategoriesQuery = {
|
|
1198
|
+
__typename?: 'Query';
|
|
1199
|
+
infiniteCategories: {
|
|
1200
|
+
__typename?: 'InfiniteCategoriesConnection';
|
|
1201
|
+
edges: Array<{
|
|
1202
|
+
__typename?: 'InfiniteCategoryEdge';
|
|
1203
|
+
cursor: string;
|
|
1204
|
+
node: {
|
|
1205
|
+
__typename?: 'Category';
|
|
1206
|
+
id: string;
|
|
1207
|
+
name: string;
|
|
1208
|
+
description?: string | null;
|
|
1209
|
+
slug: string;
|
|
1210
|
+
createdAt: any;
|
|
1211
|
+
updatedAt: any;
|
|
1212
|
+
parent?: {
|
|
1213
|
+
__typename?: 'Category';
|
|
1214
|
+
id: string;
|
|
1215
|
+
name: string;
|
|
1216
|
+
description?: string | null;
|
|
1217
|
+
slug: string;
|
|
1218
|
+
createdAt: any;
|
|
1219
|
+
updatedAt: any;
|
|
1220
|
+
names?: Array<{
|
|
1221
|
+
__typename?: 'LocalizedText';
|
|
1222
|
+
locale: string;
|
|
1223
|
+
value: string;
|
|
1224
|
+
}> | null;
|
|
1225
|
+
} | null;
|
|
1226
|
+
children?: Array<{
|
|
1227
|
+
__typename?: 'Category';
|
|
1228
|
+
id: string;
|
|
1229
|
+
name: string;
|
|
1230
|
+
description?: string | null;
|
|
1231
|
+
slug: string;
|
|
1232
|
+
createdAt: any;
|
|
1233
|
+
updatedAt: any;
|
|
1234
|
+
names?: Array<{
|
|
1235
|
+
__typename?: 'LocalizedText';
|
|
1236
|
+
locale: string;
|
|
1237
|
+
value: string;
|
|
1238
|
+
}> | null;
|
|
1239
|
+
}> | null;
|
|
1240
|
+
names?: Array<{
|
|
1241
|
+
__typename?: 'LocalizedText';
|
|
1242
|
+
locale: string;
|
|
1243
|
+
value: string;
|
|
1244
|
+
}> | null;
|
|
1245
|
+
};
|
|
1246
|
+
}>;
|
|
1247
|
+
pageInfo: {
|
|
1248
|
+
__typename?: 'InfinitePageInfo';
|
|
1249
|
+
endCursor?: string | null;
|
|
1250
|
+
hasNextPage: boolean;
|
|
1251
|
+
hasPreviousPage: boolean;
|
|
1252
|
+
startCursor?: string | null;
|
|
1253
|
+
};
|
|
1254
|
+
};
|
|
1255
|
+
};
|
|
1256
|
+
export type PaginatedCategoriesQueryVariables = Exact<{
|
|
1257
|
+
filter?: InputMaybe<CategoryFilter>;
|
|
1258
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1259
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1260
|
+
sort?: InputMaybe<Array<CategorySort> | CategorySort>;
|
|
1261
|
+
withChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1262
|
+
withParent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1263
|
+
}>;
|
|
1264
|
+
export type PaginatedCategoriesQuery = {
|
|
1265
|
+
__typename?: 'Query';
|
|
1266
|
+
paginatedCategories?: {
|
|
1267
|
+
__typename?: 'PaginatedCategoriesConnection';
|
|
1268
|
+
edges: Array<{
|
|
1269
|
+
__typename?: 'PaginatedCategoryEdge';
|
|
1270
|
+
cursor: string;
|
|
1271
|
+
node: {
|
|
1272
|
+
__typename?: 'Category';
|
|
1273
|
+
id: string;
|
|
1274
|
+
name: string;
|
|
1275
|
+
description?: string | null;
|
|
1276
|
+
slug: string;
|
|
1277
|
+
createdAt: any;
|
|
1278
|
+
updatedAt: any;
|
|
1279
|
+
parent?: {
|
|
1280
|
+
__typename?: 'Category';
|
|
1281
|
+
id: string;
|
|
1282
|
+
name: string;
|
|
1283
|
+
description?: string | null;
|
|
1284
|
+
slug: string;
|
|
1285
|
+
createdAt: any;
|
|
1286
|
+
updatedAt: any;
|
|
1287
|
+
names?: Array<{
|
|
1288
|
+
__typename?: 'LocalizedText';
|
|
1289
|
+
locale: string;
|
|
1290
|
+
value: string;
|
|
1291
|
+
}> | null;
|
|
1292
|
+
} | null;
|
|
1293
|
+
children?: Array<{
|
|
1294
|
+
__typename?: 'Category';
|
|
1295
|
+
id: string;
|
|
1296
|
+
name: string;
|
|
1297
|
+
description?: string | null;
|
|
1298
|
+
slug: string;
|
|
1299
|
+
createdAt: any;
|
|
1300
|
+
updatedAt: any;
|
|
1301
|
+
names?: Array<{
|
|
1302
|
+
__typename?: 'LocalizedText';
|
|
1303
|
+
locale: string;
|
|
1304
|
+
value: string;
|
|
1305
|
+
}> | null;
|
|
1306
|
+
}> | null;
|
|
1307
|
+
names?: Array<{
|
|
1308
|
+
__typename?: 'LocalizedText';
|
|
1309
|
+
locale: string;
|
|
1310
|
+
value: string;
|
|
1311
|
+
}> | null;
|
|
1312
|
+
};
|
|
1313
|
+
}>;
|
|
1314
|
+
pageInfo: {
|
|
1315
|
+
__typename?: 'PaginatedPageInfo';
|
|
1316
|
+
currentPage: number;
|
|
1317
|
+
hasNextPage: boolean;
|
|
1318
|
+
hasPreviousPage: boolean;
|
|
1319
|
+
totalEdges: number;
|
|
1320
|
+
totalPages: number;
|
|
1321
|
+
};
|
|
1322
|
+
} | null;
|
|
1323
|
+
};
|
|
1324
|
+
export type ColorFragmentFragment = {
|
|
1325
|
+
__typename?: 'Color';
|
|
1326
|
+
updatedAt: any;
|
|
1327
|
+
hexCode: string;
|
|
1328
|
+
id: string;
|
|
1329
|
+
name: string;
|
|
1330
|
+
createdAt: any;
|
|
1331
|
+
};
|
|
1332
|
+
export type InfiniteColorsQueryVariables = Exact<{
|
|
1333
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1334
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1335
|
+
filter?: InputMaybe<ColorFilter>;
|
|
1336
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1337
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1338
|
+
sort?: InputMaybe<Array<ColorSort> | ColorSort>;
|
|
1339
|
+
}>;
|
|
1340
|
+
export type InfiniteColorsQuery = {
|
|
1341
|
+
__typename?: 'Query';
|
|
1342
|
+
infiniteColors: {
|
|
1343
|
+
__typename?: 'InfiniteColorsConnection';
|
|
1344
|
+
edges: Array<{
|
|
1345
|
+
__typename?: 'InfiniteColorEdge';
|
|
1346
|
+
cursor: string;
|
|
1347
|
+
node: {
|
|
1348
|
+
__typename?: 'Color';
|
|
1349
|
+
updatedAt: any;
|
|
1350
|
+
hexCode: string;
|
|
1351
|
+
id: string;
|
|
1352
|
+
name: string;
|
|
1353
|
+
createdAt: any;
|
|
1354
|
+
};
|
|
1355
|
+
}>;
|
|
1356
|
+
pageInfo: {
|
|
1357
|
+
__typename?: 'InfinitePageInfo';
|
|
1358
|
+
endCursor?: string | null;
|
|
1359
|
+
hasNextPage: boolean;
|
|
1360
|
+
hasPreviousPage: boolean;
|
|
1361
|
+
startCursor?: string | null;
|
|
1362
|
+
};
|
|
1363
|
+
};
|
|
1364
|
+
};
|
|
1365
|
+
export type PaginatedColorsQueryVariables = Exact<{
|
|
1366
|
+
filter?: InputMaybe<ColorFilter>;
|
|
1367
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1368
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1369
|
+
sort?: InputMaybe<Array<ColorSort> | ColorSort>;
|
|
1370
|
+
}>;
|
|
1371
|
+
export type PaginatedColorsQuery = {
|
|
1372
|
+
__typename?: 'Query';
|
|
1373
|
+
paginatedColors?: {
|
|
1374
|
+
__typename?: 'PaginatedColorsConnection';
|
|
1375
|
+
edges: Array<{
|
|
1376
|
+
__typename?: 'PaginatedColorEdge';
|
|
1377
|
+
cursor: string;
|
|
1378
|
+
node: {
|
|
1379
|
+
__typename?: 'Color';
|
|
1380
|
+
updatedAt: any;
|
|
1381
|
+
hexCode: string;
|
|
1382
|
+
id: string;
|
|
1383
|
+
name: string;
|
|
1384
|
+
createdAt: any;
|
|
1385
|
+
};
|
|
1386
|
+
}>;
|
|
1387
|
+
pageInfo: {
|
|
1388
|
+
__typename?: 'PaginatedPageInfo';
|
|
1389
|
+
currentPage: number;
|
|
1390
|
+
hasNextPage: boolean;
|
|
1391
|
+
hasPreviousPage: boolean;
|
|
1392
|
+
totalEdges: number;
|
|
1393
|
+
totalPages: number;
|
|
1394
|
+
};
|
|
1395
|
+
} | null;
|
|
1396
|
+
};
|
|
1397
|
+
export type CustomerFragmentFragment = {
|
|
1398
|
+
__typename?: 'Customer';
|
|
1399
|
+
id: string;
|
|
1400
|
+
fullName: string;
|
|
1401
|
+
createdAt: any;
|
|
1402
|
+
updatedAt: any;
|
|
1403
|
+
};
|
|
1404
|
+
export type CreateCustomerMutationVariables = Exact<{
|
|
1405
|
+
data: CreateCustomerInput;
|
|
1406
|
+
}>;
|
|
1407
|
+
export type CreateCustomerMutation = {
|
|
1408
|
+
__typename?: 'Mutation';
|
|
1409
|
+
createCustomer: {
|
|
1410
|
+
__typename?: 'Customer';
|
|
1411
|
+
id: string;
|
|
1412
|
+
fullName: string;
|
|
1413
|
+
createdAt: any;
|
|
1414
|
+
updatedAt: any;
|
|
1415
|
+
};
|
|
1416
|
+
};
|
|
1417
|
+
export type UpdateCustomerMutationVariables = Exact<{
|
|
1418
|
+
data: UpdateCustomerInput;
|
|
1419
|
+
id: Scalars['ID']['input'];
|
|
1420
|
+
}>;
|
|
1421
|
+
export type UpdateCustomerMutation = {
|
|
1422
|
+
__typename?: 'Mutation';
|
|
1423
|
+
updateCustomer: {
|
|
1424
|
+
__typename?: 'Customer';
|
|
1425
|
+
id: string;
|
|
1426
|
+
fullName: string;
|
|
1427
|
+
createdAt: any;
|
|
1428
|
+
updatedAt: any;
|
|
1429
|
+
};
|
|
1430
|
+
};
|
|
1431
|
+
export type InfiniteCustomersQueryVariables = Exact<{
|
|
1432
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1433
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1434
|
+
filter?: InputMaybe<CustomerFilter>;
|
|
1435
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1436
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1437
|
+
sort?: InputMaybe<Array<CustomerSort> | CustomerSort>;
|
|
1438
|
+
}>;
|
|
1439
|
+
export type InfiniteCustomersQuery = {
|
|
1440
|
+
__typename?: 'Query';
|
|
1441
|
+
infiniteCustomers: {
|
|
1442
|
+
__typename?: 'InfiniteCustomersConnection';
|
|
1443
|
+
edges: Array<{
|
|
1444
|
+
__typename?: 'InfiniteCustomerEdge';
|
|
1445
|
+
cursor: string;
|
|
1446
|
+
node: {
|
|
1447
|
+
__typename?: 'Customer';
|
|
1448
|
+
id: string;
|
|
1449
|
+
fullName: string;
|
|
1450
|
+
createdAt: any;
|
|
1451
|
+
updatedAt: any;
|
|
1452
|
+
};
|
|
1453
|
+
}>;
|
|
1454
|
+
pageInfo: {
|
|
1455
|
+
__typename?: 'InfinitePageInfo';
|
|
1456
|
+
endCursor?: string | null;
|
|
1457
|
+
hasNextPage: boolean;
|
|
1458
|
+
hasPreviousPage: boolean;
|
|
1459
|
+
startCursor?: string | null;
|
|
1460
|
+
};
|
|
1461
|
+
};
|
|
1462
|
+
};
|
|
1463
|
+
export type PaginatedCustomersQueryVariables = Exact<{
|
|
1464
|
+
filter?: InputMaybe<CustomerFilter>;
|
|
1465
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1466
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1467
|
+
sort?: InputMaybe<Array<CustomerSort> | CustomerSort>;
|
|
1468
|
+
}>;
|
|
1469
|
+
export type PaginatedCustomersQuery = {
|
|
1470
|
+
__typename?: 'Query';
|
|
1471
|
+
paginatedCustomers?: {
|
|
1472
|
+
__typename?: 'PaginatedCustomersConnection';
|
|
1473
|
+
edges: Array<{
|
|
1474
|
+
__typename?: 'PaginatedCustomerEdge';
|
|
1475
|
+
cursor: string;
|
|
1476
|
+
node: {
|
|
1477
|
+
__typename?: 'Customer';
|
|
1478
|
+
id: string;
|
|
1479
|
+
fullName: string;
|
|
1480
|
+
createdAt: any;
|
|
1481
|
+
updatedAt: any;
|
|
1482
|
+
};
|
|
1483
|
+
}>;
|
|
1484
|
+
pageInfo: {
|
|
1485
|
+
__typename?: 'PaginatedPageInfo';
|
|
1486
|
+
currentPage: number;
|
|
1487
|
+
hasNextPage: boolean;
|
|
1488
|
+
hasPreviousPage: boolean;
|
|
1489
|
+
totalEdges: number;
|
|
1490
|
+
totalPages: number;
|
|
1491
|
+
};
|
|
1492
|
+
} | null;
|
|
1493
|
+
};
|
|
1494
|
+
export type FileThumbnailsFieldsFragment = {
|
|
1495
|
+
__typename?: 'FileThumbnails';
|
|
1496
|
+
thumbnail450Url?: string | null;
|
|
1497
|
+
thumbnail900Url?: string | null;
|
|
1498
|
+
};
|
|
1499
|
+
export type FileUploadUrlFieldsFragment = {
|
|
1500
|
+
__typename?: 'FileUploadUrl';
|
|
1501
|
+
order: number;
|
|
1502
|
+
url: string;
|
|
1503
|
+
};
|
|
1504
|
+
export type FileUploadFieldsFragment = {
|
|
1505
|
+
__typename?: 'FileUpload';
|
|
1506
|
+
uploadId: string;
|
|
1507
|
+
file: {
|
|
1508
|
+
__typename?: 'File';
|
|
1509
|
+
createdAt: any;
|
|
1510
|
+
id: string;
|
|
1511
|
+
name: string;
|
|
1512
|
+
size?: number | null;
|
|
1513
|
+
status: FileStatusEnum;
|
|
1514
|
+
type?: string | null;
|
|
1515
|
+
updatedAt: any;
|
|
1516
|
+
url?: string | null;
|
|
1517
|
+
thumbnails: {
|
|
1518
|
+
__typename?: 'FileThumbnails';
|
|
1519
|
+
thumbnail450Url?: string | null;
|
|
1520
|
+
thumbnail900Url?: string | null;
|
|
1521
|
+
};
|
|
1522
|
+
};
|
|
1523
|
+
urls: Array<{
|
|
1524
|
+
__typename?: 'FileUploadUrl';
|
|
1525
|
+
order: number;
|
|
1526
|
+
url: string;
|
|
1527
|
+
}>;
|
|
1528
|
+
};
|
|
1529
|
+
export type FileFieldsFragment = {
|
|
1530
|
+
__typename?: 'File';
|
|
1531
|
+
createdAt: any;
|
|
1532
|
+
id: string;
|
|
1533
|
+
name: string;
|
|
1534
|
+
size?: number | null;
|
|
1535
|
+
status: FileStatusEnum;
|
|
1536
|
+
type?: string | null;
|
|
1537
|
+
updatedAt: any;
|
|
1538
|
+
url?: string | null;
|
|
1539
|
+
thumbnails: {
|
|
1540
|
+
__typename?: 'FileThumbnails';
|
|
1541
|
+
thumbnail450Url?: string | null;
|
|
1542
|
+
thumbnail900Url?: string | null;
|
|
1543
|
+
};
|
|
1544
|
+
};
|
|
1545
|
+
export type InitiateFileUploadMutationVariables = Exact<{
|
|
1546
|
+
data: InitiateFileUploadInput;
|
|
1547
|
+
}>;
|
|
1548
|
+
export type InitiateFileUploadMutation = {
|
|
1549
|
+
__typename?: 'Mutation';
|
|
1550
|
+
initiateFileUpload: {
|
|
1551
|
+
__typename?: 'FileUpload';
|
|
1552
|
+
uploadId: string;
|
|
1553
|
+
file: {
|
|
1554
|
+
__typename?: 'File';
|
|
1555
|
+
createdAt: any;
|
|
1556
|
+
id: string;
|
|
1557
|
+
name: string;
|
|
1558
|
+
size?: number | null;
|
|
1559
|
+
status: FileStatusEnum;
|
|
1560
|
+
type?: string | null;
|
|
1561
|
+
updatedAt: any;
|
|
1562
|
+
url?: string | null;
|
|
1563
|
+
thumbnails: {
|
|
1564
|
+
__typename?: 'FileThumbnails';
|
|
1565
|
+
thumbnail450Url?: string | null;
|
|
1566
|
+
thumbnail900Url?: string | null;
|
|
1567
|
+
};
|
|
1568
|
+
};
|
|
1569
|
+
urls: Array<{
|
|
1570
|
+
__typename?: 'FileUploadUrl';
|
|
1571
|
+
order: number;
|
|
1572
|
+
url: string;
|
|
1573
|
+
}>;
|
|
1574
|
+
};
|
|
1575
|
+
};
|
|
1576
|
+
export type CompleteFileUploadMutationVariables = Exact<{
|
|
1577
|
+
id: Scalars['ID']['input'];
|
|
1578
|
+
data: CompleteFileUploadInput;
|
|
1579
|
+
}>;
|
|
1580
|
+
export type CompleteFileUploadMutation = {
|
|
1581
|
+
__typename?: 'Mutation';
|
|
1582
|
+
completeFileUpload: {
|
|
1583
|
+
__typename?: 'File';
|
|
1584
|
+
createdAt: any;
|
|
1585
|
+
id: string;
|
|
1586
|
+
name: string;
|
|
1587
|
+
size?: number | null;
|
|
1588
|
+
status: FileStatusEnum;
|
|
1589
|
+
type?: string | null;
|
|
1590
|
+
updatedAt: any;
|
|
1591
|
+
url?: string | null;
|
|
1592
|
+
thumbnails: {
|
|
1593
|
+
__typename?: 'FileThumbnails';
|
|
1594
|
+
thumbnail450Url?: string | null;
|
|
1595
|
+
thumbnail900Url?: string | null;
|
|
1596
|
+
};
|
|
1597
|
+
};
|
|
1598
|
+
};
|
|
1599
|
+
export type FileQueryVariables = Exact<{
|
|
1600
|
+
id: Scalars['ID']['input'];
|
|
1601
|
+
}>;
|
|
1602
|
+
export type FileQuery = {
|
|
1603
|
+
__typename?: 'Query';
|
|
1604
|
+
file: {
|
|
1605
|
+
__typename?: 'File';
|
|
1606
|
+
createdAt: any;
|
|
1607
|
+
id: string;
|
|
1608
|
+
name: string;
|
|
1609
|
+
size?: number | null;
|
|
1610
|
+
status: FileStatusEnum;
|
|
1611
|
+
type?: string | null;
|
|
1612
|
+
updatedAt: any;
|
|
1613
|
+
url?: string | null;
|
|
1614
|
+
thumbnails: {
|
|
1615
|
+
__typename?: 'FileThumbnails';
|
|
1616
|
+
thumbnail450Url?: string | null;
|
|
1617
|
+
thumbnail900Url?: string | null;
|
|
1618
|
+
};
|
|
1619
|
+
};
|
|
1620
|
+
};
|
|
1621
|
+
export type MetricFragmentFragment = {
|
|
1622
|
+
__typename?: 'Metric';
|
|
1623
|
+
createdAt: any;
|
|
1624
|
+
id: string;
|
|
1625
|
+
name: string;
|
|
1626
|
+
symbol: string;
|
|
1627
|
+
type: UnitType;
|
|
1628
|
+
updatedAt: any;
|
|
1629
|
+
};
|
|
1630
|
+
export type InfiniteMetricsQueryVariables = Exact<{
|
|
1631
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1632
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1633
|
+
filter?: InputMaybe<MetricFilter>;
|
|
1634
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1635
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1636
|
+
sort?: InputMaybe<Array<MetricSort> | MetricSort>;
|
|
1637
|
+
}>;
|
|
1638
|
+
export type InfiniteMetricsQuery = {
|
|
1639
|
+
__typename?: 'Query';
|
|
1640
|
+
infiniteMetrics: {
|
|
1641
|
+
__typename?: 'InfiniteMetricsConnection';
|
|
1642
|
+
edges: Array<{
|
|
1643
|
+
__typename?: 'InfiniteMetricEdge';
|
|
1644
|
+
cursor: string;
|
|
1645
|
+
node: {
|
|
1646
|
+
__typename?: 'Metric';
|
|
1647
|
+
createdAt: any;
|
|
1648
|
+
id: string;
|
|
1649
|
+
name: string;
|
|
1650
|
+
symbol: string;
|
|
1651
|
+
type: UnitType;
|
|
1652
|
+
updatedAt: any;
|
|
1653
|
+
};
|
|
1654
|
+
}>;
|
|
1655
|
+
pageInfo: {
|
|
1656
|
+
__typename?: 'InfinitePageInfo';
|
|
1657
|
+
endCursor?: string | null;
|
|
1658
|
+
hasNextPage: boolean;
|
|
1659
|
+
hasPreviousPage: boolean;
|
|
1660
|
+
startCursor?: string | null;
|
|
1661
|
+
};
|
|
1662
|
+
};
|
|
1663
|
+
};
|
|
1664
|
+
export type OrderFragmentFragment = {
|
|
1665
|
+
__typename?: 'Order';
|
|
1666
|
+
id: string;
|
|
1667
|
+
total: number;
|
|
1668
|
+
createdAt: any;
|
|
1669
|
+
updatedAt?: any | null;
|
|
1670
|
+
};
|
|
1671
|
+
export type CreateOrderMutationVariables = Exact<{
|
|
1672
|
+
data: CreateOrderInput;
|
|
1673
|
+
}>;
|
|
1674
|
+
export type CreateOrderMutation = {
|
|
1675
|
+
__typename?: 'Mutation';
|
|
1676
|
+
createOrder: {
|
|
1677
|
+
__typename?: 'Order';
|
|
1678
|
+
id: string;
|
|
1679
|
+
total: number;
|
|
1680
|
+
createdAt: any;
|
|
1681
|
+
updatedAt?: any | null;
|
|
1682
|
+
};
|
|
1683
|
+
};
|
|
1684
|
+
export type UpdateOrderMutationVariables = Exact<{
|
|
1685
|
+
data: UpdateOrderInput;
|
|
1686
|
+
id: Scalars['ID']['input'];
|
|
1687
|
+
}>;
|
|
1688
|
+
export type UpdateOrderMutation = {
|
|
1689
|
+
__typename?: 'Mutation';
|
|
1690
|
+
updateOrder: {
|
|
1691
|
+
__typename?: 'Order';
|
|
1692
|
+
id: string;
|
|
1693
|
+
total: number;
|
|
1694
|
+
createdAt: any;
|
|
1695
|
+
updatedAt?: any | null;
|
|
1696
|
+
};
|
|
1697
|
+
};
|
|
1698
|
+
export type InfiniteOrdersQueryVariables = Exact<{
|
|
1699
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1700
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1701
|
+
filter?: InputMaybe<OrderFilter>;
|
|
1702
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1703
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1704
|
+
sort?: InputMaybe<Array<OrderSort> | OrderSort>;
|
|
1705
|
+
}>;
|
|
1706
|
+
export type InfiniteOrdersQuery = {
|
|
1707
|
+
__typename?: 'Query';
|
|
1708
|
+
infiniteOrders: {
|
|
1709
|
+
__typename?: 'InfiniteOrdersConnection';
|
|
1710
|
+
edges: Array<{
|
|
1711
|
+
__typename?: 'InfiniteOrderEdge';
|
|
1712
|
+
cursor: string;
|
|
1713
|
+
node: {
|
|
1714
|
+
__typename?: 'Order';
|
|
1715
|
+
id: string;
|
|
1716
|
+
total: number;
|
|
1717
|
+
createdAt: any;
|
|
1718
|
+
updatedAt?: any | null;
|
|
1719
|
+
};
|
|
1720
|
+
}>;
|
|
1721
|
+
pageInfo: {
|
|
1722
|
+
__typename?: 'InfinitePageInfo';
|
|
1723
|
+
endCursor?: string | null;
|
|
1724
|
+
hasNextPage: boolean;
|
|
1725
|
+
hasPreviousPage: boolean;
|
|
1726
|
+
startCursor?: string | null;
|
|
1727
|
+
};
|
|
1728
|
+
};
|
|
1729
|
+
};
|
|
1730
|
+
export type PaginatedOrdersQueryVariables = Exact<{
|
|
1731
|
+
filter?: InputMaybe<OrderFilter>;
|
|
1732
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1733
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1734
|
+
sort?: InputMaybe<Array<OrderSort> | OrderSort>;
|
|
1735
|
+
}>;
|
|
1736
|
+
export type PaginatedOrdersQuery = {
|
|
1737
|
+
__typename?: 'Query';
|
|
1738
|
+
paginatedOrders?: {
|
|
1739
|
+
__typename?: 'PaginatedOrdersConnection';
|
|
1740
|
+
edges: Array<{
|
|
1741
|
+
__typename?: 'PaginatedOrderEdge';
|
|
1742
|
+
cursor: string;
|
|
1743
|
+
node: {
|
|
1744
|
+
__typename?: 'Order';
|
|
1745
|
+
id: string;
|
|
1746
|
+
total: number;
|
|
1747
|
+
createdAt: any;
|
|
1748
|
+
updatedAt?: any | null;
|
|
1749
|
+
};
|
|
1750
|
+
}>;
|
|
1751
|
+
pageInfo: {
|
|
1752
|
+
__typename?: 'PaginatedPageInfo';
|
|
1753
|
+
currentPage: number;
|
|
1754
|
+
hasNextPage: boolean;
|
|
1755
|
+
hasPreviousPage: boolean;
|
|
1756
|
+
totalEdges: number;
|
|
1757
|
+
totalPages: number;
|
|
1758
|
+
};
|
|
1759
|
+
} | null;
|
|
1760
|
+
};
|
|
1761
|
+
export type ProductFragmentFragment = {
|
|
1762
|
+
__typename?: 'Product';
|
|
1763
|
+
id: string;
|
|
1764
|
+
name: string;
|
|
1765
|
+
};
|
|
1766
|
+
export type InfiniteProductsQueryVariables = Exact<{
|
|
1767
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1768
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1769
|
+
filter?: InputMaybe<ProductFilter>;
|
|
1770
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1771
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1772
|
+
sort?: InputMaybe<Array<ProductSort> | ProductSort>;
|
|
1773
|
+
}>;
|
|
1774
|
+
export type InfiniteProductsQuery = {
|
|
1775
|
+
__typename?: 'Query';
|
|
1776
|
+
infiniteProducts: {
|
|
1777
|
+
__typename?: 'InfiniteProductsConnection';
|
|
1778
|
+
edges: Array<{
|
|
1779
|
+
__typename?: 'InfiniteProductEdge';
|
|
1780
|
+
cursor: string;
|
|
1781
|
+
node: {
|
|
1782
|
+
__typename?: 'Product';
|
|
1783
|
+
id: string;
|
|
1784
|
+
name: string;
|
|
1785
|
+
};
|
|
1786
|
+
}>;
|
|
1787
|
+
pageInfo: {
|
|
1788
|
+
__typename?: 'InfinitePageInfo';
|
|
1789
|
+
endCursor?: string | null;
|
|
1790
|
+
hasNextPage: boolean;
|
|
1791
|
+
hasPreviousPage: boolean;
|
|
1792
|
+
startCursor?: string | null;
|
|
1793
|
+
};
|
|
1794
|
+
};
|
|
1795
|
+
};
|
|
1796
|
+
export type PaginatedProductsQueryVariables = Exact<{
|
|
1797
|
+
filter?: InputMaybe<ProductFilter>;
|
|
1798
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1799
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1800
|
+
sort?: InputMaybe<Array<ProductSort> | ProductSort>;
|
|
1801
|
+
}>;
|
|
1802
|
+
export type PaginatedProductsQuery = {
|
|
1803
|
+
__typename?: 'Query';
|
|
1804
|
+
paginatedProducts?: {
|
|
1805
|
+
__typename?: 'PaginatedProductsConnection';
|
|
1806
|
+
edges: Array<{
|
|
1807
|
+
__typename?: 'PaginatedProductEdge';
|
|
1808
|
+
cursor: string;
|
|
1809
|
+
node: {
|
|
1810
|
+
__typename?: 'Product';
|
|
1811
|
+
id: string;
|
|
1812
|
+
name: string;
|
|
1813
|
+
};
|
|
1814
|
+
}>;
|
|
1815
|
+
pageInfo: {
|
|
1816
|
+
__typename?: 'PaginatedPageInfo';
|
|
1817
|
+
currentPage: number;
|
|
1818
|
+
hasNextPage: boolean;
|
|
1819
|
+
hasPreviousPage: boolean;
|
|
1820
|
+
totalEdges: number;
|
|
1821
|
+
totalPages: number;
|
|
1822
|
+
};
|
|
1823
|
+
} | null;
|
|
1824
|
+
};
|
|
1825
|
+
export type ProductQueryVariables = Exact<{
|
|
1826
|
+
id: Scalars['ID']['input'];
|
|
1827
|
+
}>;
|
|
1828
|
+
export type ProductQuery = {
|
|
1829
|
+
__typename?: 'Query';
|
|
1830
|
+
product?: Array<{
|
|
1831
|
+
__typename?: 'Product';
|
|
1832
|
+
id: string;
|
|
1833
|
+
name: string;
|
|
1834
|
+
}> | null;
|
|
1835
|
+
};
|
|
1836
|
+
export type CreateProductMutationVariables = Exact<{
|
|
1837
|
+
data: CreateProductInput;
|
|
1838
|
+
}>;
|
|
1839
|
+
export type CreateProductMutation = {
|
|
1840
|
+
__typename?: 'Mutation';
|
|
1841
|
+
createProduct: {
|
|
1842
|
+
__typename?: 'Product';
|
|
1843
|
+
id: string;
|
|
1844
|
+
name: string;
|
|
1845
|
+
};
|
|
1846
|
+
};
|
|
1847
|
+
export type UpdateProductMutationVariables = Exact<{
|
|
1848
|
+
data: UpdateProductInput;
|
|
1849
|
+
id: Scalars['ID']['input'];
|
|
1850
|
+
}>;
|
|
1851
|
+
export type UpdateProductMutation = {
|
|
1852
|
+
__typename?: 'Mutation';
|
|
1853
|
+
updateProduct: {
|
|
1854
|
+
__typename?: 'Product';
|
|
1855
|
+
id: string;
|
|
1856
|
+
name: string;
|
|
1857
|
+
};
|
|
1858
|
+
};
|
|
1859
|
+
export type DeleteProductMutationVariables = Exact<{
|
|
1860
|
+
id: Scalars['ID']['input'];
|
|
1861
|
+
}>;
|
|
1862
|
+
export type DeleteProductMutation = {
|
|
1863
|
+
__typename?: 'Mutation';
|
|
1864
|
+
deleteProduct: {
|
|
1865
|
+
__typename?: 'Status';
|
|
1866
|
+
reason?: string | null;
|
|
1867
|
+
status: StatusEnum;
|
|
1868
|
+
};
|
|
1869
|
+
};
|
|
1870
|
+
export type SellerFragmentFragment = {
|
|
1871
|
+
__typename?: 'Seller';
|
|
1872
|
+
id: string;
|
|
1873
|
+
name: string;
|
|
1874
|
+
description?: string | null;
|
|
1875
|
+
active: boolean;
|
|
1876
|
+
orderNumber: number;
|
|
1877
|
+
slug: string;
|
|
1878
|
+
rating?: number | null;
|
|
1879
|
+
verified: boolean;
|
|
1880
|
+
createdAt: any;
|
|
1881
|
+
updatedAt: any;
|
|
1882
|
+
};
|
|
1883
|
+
export type CreateSellerMutationVariables = Exact<{
|
|
1884
|
+
data: CreateSellerInput;
|
|
1885
|
+
}>;
|
|
1886
|
+
export type CreateSellerMutation = {
|
|
1887
|
+
__typename?: 'Mutation';
|
|
1888
|
+
createSeller: {
|
|
1889
|
+
__typename?: 'Seller';
|
|
1890
|
+
id: string;
|
|
1891
|
+
name: string;
|
|
1892
|
+
description?: string | null;
|
|
1893
|
+
active: boolean;
|
|
1894
|
+
orderNumber: number;
|
|
1895
|
+
slug: string;
|
|
1896
|
+
rating?: number | null;
|
|
1897
|
+
verified: boolean;
|
|
1898
|
+
createdAt: any;
|
|
1899
|
+
updatedAt: any;
|
|
1900
|
+
};
|
|
1901
|
+
};
|
|
1902
|
+
export type UpdateSellerMutationVariables = Exact<{
|
|
1903
|
+
data: UpdateSellerInput;
|
|
1904
|
+
id: Scalars['ID']['input'];
|
|
1905
|
+
}>;
|
|
1906
|
+
export type UpdateSellerMutation = {
|
|
1907
|
+
__typename?: 'Mutation';
|
|
1908
|
+
updateSeller: {
|
|
1909
|
+
__typename?: 'Seller';
|
|
1910
|
+
id: string;
|
|
1911
|
+
name: string;
|
|
1912
|
+
description?: string | null;
|
|
1913
|
+
active: boolean;
|
|
1914
|
+
orderNumber: number;
|
|
1915
|
+
slug: string;
|
|
1916
|
+
rating?: number | null;
|
|
1917
|
+
verified: boolean;
|
|
1918
|
+
createdAt: any;
|
|
1919
|
+
updatedAt: any;
|
|
1920
|
+
};
|
|
1921
|
+
};
|
|
1922
|
+
export type InfiniteSellersQueryVariables = Exact<{
|
|
1923
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1924
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1925
|
+
filter?: InputMaybe<SellerFilter>;
|
|
1926
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1927
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1928
|
+
sort?: InputMaybe<Array<SellerSort> | SellerSort>;
|
|
1929
|
+
withLogo?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1930
|
+
}>;
|
|
1931
|
+
export type InfiniteSellersQuery = {
|
|
1932
|
+
__typename?: 'Query';
|
|
1933
|
+
infiniteSellers: {
|
|
1934
|
+
__typename?: 'InfiniteSellersConnection';
|
|
1935
|
+
edges: Array<{
|
|
1936
|
+
__typename?: 'InfiniteSellerEdge';
|
|
1937
|
+
cursor: string;
|
|
1938
|
+
node: {
|
|
1939
|
+
__typename?: 'Seller';
|
|
1940
|
+
id: string;
|
|
1941
|
+
name: string;
|
|
1942
|
+
description?: string | null;
|
|
1943
|
+
active: boolean;
|
|
1944
|
+
orderNumber: number;
|
|
1945
|
+
slug: string;
|
|
1946
|
+
rating?: number | null;
|
|
1947
|
+
verified: boolean;
|
|
1948
|
+
createdAt: any;
|
|
1949
|
+
updatedAt: any;
|
|
1950
|
+
logo?: {
|
|
1951
|
+
__typename?: 'File';
|
|
1952
|
+
createdAt: any;
|
|
1953
|
+
id: string;
|
|
1954
|
+
name: string;
|
|
1955
|
+
size?: number | null;
|
|
1956
|
+
status: FileStatusEnum;
|
|
1957
|
+
type?: string | null;
|
|
1958
|
+
updatedAt: any;
|
|
1959
|
+
url?: string | null;
|
|
1960
|
+
thumbnails: {
|
|
1961
|
+
__typename?: 'FileThumbnails';
|
|
1962
|
+
thumbnail450Url?: string | null;
|
|
1963
|
+
thumbnail900Url?: string | null;
|
|
1964
|
+
};
|
|
1965
|
+
} | null;
|
|
1966
|
+
};
|
|
1967
|
+
}>;
|
|
1968
|
+
pageInfo: {
|
|
1969
|
+
__typename?: 'InfinitePageInfo';
|
|
1970
|
+
endCursor?: string | null;
|
|
1971
|
+
hasNextPage: boolean;
|
|
1972
|
+
hasPreviousPage: boolean;
|
|
1973
|
+
startCursor?: string | null;
|
|
1974
|
+
};
|
|
1975
|
+
};
|
|
1976
|
+
};
|
|
1977
|
+
export type PaginatedSellersQueryVariables = Exact<{
|
|
1978
|
+
filter?: InputMaybe<SellerFilter>;
|
|
1979
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1980
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1981
|
+
sort?: InputMaybe<Array<SellerSort> | SellerSort>;
|
|
1982
|
+
withLogo?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1983
|
+
}>;
|
|
1984
|
+
export type PaginatedSellersQuery = {
|
|
1985
|
+
__typename?: 'Query';
|
|
1986
|
+
paginatedSellers?: {
|
|
1987
|
+
__typename?: 'PaginatedSellersConnection';
|
|
1988
|
+
edges: Array<{
|
|
1989
|
+
__typename?: 'PaginatedSellerEdge';
|
|
1990
|
+
cursor: string;
|
|
1991
|
+
node: {
|
|
1992
|
+
__typename?: 'Seller';
|
|
1993
|
+
id: string;
|
|
1994
|
+
name: string;
|
|
1995
|
+
description?: string | null;
|
|
1996
|
+
active: boolean;
|
|
1997
|
+
orderNumber: number;
|
|
1998
|
+
slug: string;
|
|
1999
|
+
rating?: number | null;
|
|
2000
|
+
verified: boolean;
|
|
2001
|
+
createdAt: any;
|
|
2002
|
+
updatedAt: any;
|
|
2003
|
+
logo?: {
|
|
2004
|
+
__typename?: 'File';
|
|
2005
|
+
createdAt: any;
|
|
2006
|
+
id: string;
|
|
2007
|
+
name: string;
|
|
2008
|
+
size?: number | null;
|
|
2009
|
+
status: FileStatusEnum;
|
|
2010
|
+
type?: string | null;
|
|
2011
|
+
updatedAt: any;
|
|
2012
|
+
url?: string | null;
|
|
2013
|
+
thumbnails: {
|
|
2014
|
+
__typename?: 'FileThumbnails';
|
|
2015
|
+
thumbnail450Url?: string | null;
|
|
2016
|
+
thumbnail900Url?: string | null;
|
|
2017
|
+
};
|
|
2018
|
+
} | null;
|
|
2019
|
+
};
|
|
2020
|
+
}>;
|
|
2021
|
+
pageInfo: {
|
|
2022
|
+
__typename?: 'PaginatedPageInfo';
|
|
2023
|
+
currentPage: number;
|
|
2024
|
+
hasNextPage: boolean;
|
|
2025
|
+
hasPreviousPage: boolean;
|
|
2026
|
+
totalEdges: number;
|
|
2027
|
+
totalPages: number;
|
|
2028
|
+
};
|
|
2029
|
+
} | null;
|
|
2030
|
+
};
|
|
2031
|
+
export declare const AttributeFragmentFragmentDoc: import("graphql").DocumentNode;
|
|
2032
|
+
export declare const BrandFragmentFragmentDoc: import("graphql").DocumentNode;
|
|
2033
|
+
export declare const CategoryFragmentFragmentDoc: import("graphql").DocumentNode;
|
|
2034
|
+
export declare const ColorFragmentFragmentDoc: import("graphql").DocumentNode;
|
|
2035
|
+
export declare const CustomerFragmentFragmentDoc: import("graphql").DocumentNode;
|
|
2036
|
+
export declare const FileThumbnailsFieldsFragmentDoc: import("graphql").DocumentNode;
|
|
2037
|
+
export declare const FileFieldsFragmentDoc: import("graphql").DocumentNode;
|
|
2038
|
+
export declare const FileUploadUrlFieldsFragmentDoc: import("graphql").DocumentNode;
|
|
2039
|
+
export declare const FileUploadFieldsFragmentDoc: import("graphql").DocumentNode;
|
|
2040
|
+
export declare const MetricFragmentFragmentDoc: import("graphql").DocumentNode;
|
|
2041
|
+
export declare const OrderFragmentFragmentDoc: import("graphql").DocumentNode;
|
|
2042
|
+
export declare const ProductFragmentFragmentDoc: import("graphql").DocumentNode;
|
|
2043
|
+
export declare const SellerFragmentFragmentDoc: import("graphql").DocumentNode;
|
|
2044
|
+
export declare const InfiniteAttributesDocument: import("graphql").DocumentNode;
|
|
2045
|
+
export declare const PaginatedAttributesDocument: import("graphql").DocumentNode;
|
|
2046
|
+
export declare const InfiniteBrandsDocument: import("graphql").DocumentNode;
|
|
2047
|
+
export declare const PaginatedBrandsDocument: import("graphql").DocumentNode;
|
|
2048
|
+
export declare const InfiniteCategoriesDocument: import("graphql").DocumentNode;
|
|
2049
|
+
export declare const PaginatedCategoriesDocument: import("graphql").DocumentNode;
|
|
2050
|
+
export declare const InfiniteColorsDocument: import("graphql").DocumentNode;
|
|
2051
|
+
export declare const PaginatedColorsDocument: import("graphql").DocumentNode;
|
|
2052
|
+
export declare const CreateCustomerDocument: import("graphql").DocumentNode;
|
|
2053
|
+
export declare const UpdateCustomerDocument: import("graphql").DocumentNode;
|
|
2054
|
+
export declare const InfiniteCustomersDocument: import("graphql").DocumentNode;
|
|
2055
|
+
export declare const PaginatedCustomersDocument: import("graphql").DocumentNode;
|
|
2056
|
+
export declare const InitiateFileUploadDocument: import("graphql").DocumentNode;
|
|
2057
|
+
export declare const CompleteFileUploadDocument: import("graphql").DocumentNode;
|
|
2058
|
+
export declare const FileDocument: import("graphql").DocumentNode;
|
|
2059
|
+
export declare const InfiniteMetricsDocument: import("graphql").DocumentNode;
|
|
2060
|
+
export declare const CreateOrderDocument: import("graphql").DocumentNode;
|
|
2061
|
+
export declare const UpdateOrderDocument: import("graphql").DocumentNode;
|
|
2062
|
+
export declare const InfiniteOrdersDocument: import("graphql").DocumentNode;
|
|
2063
|
+
export declare const PaginatedOrdersDocument: import("graphql").DocumentNode;
|
|
2064
|
+
export declare const InfiniteProductsDocument: import("graphql").DocumentNode;
|
|
2065
|
+
export declare const PaginatedProductsDocument: import("graphql").DocumentNode;
|
|
2066
|
+
export declare const ProductDocument: import("graphql").DocumentNode;
|
|
2067
|
+
export declare const CreateProductDocument: import("graphql").DocumentNode;
|
|
2068
|
+
export declare const UpdateProductDocument: import("graphql").DocumentNode;
|
|
2069
|
+
export declare const DeleteProductDocument: import("graphql").DocumentNode;
|
|
2070
|
+
export declare const CreateSellerDocument: import("graphql").DocumentNode;
|
|
2071
|
+
export declare const UpdateSellerDocument: import("graphql").DocumentNode;
|
|
2072
|
+
export declare const InfiniteSellersDocument: import("graphql").DocumentNode;
|
|
2073
|
+
export declare const PaginatedSellersDocument: import("graphql").DocumentNode;
|