npm-pkg-hook 1.0.0 → 1.0.2

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.
Files changed (47) hide show
  1. package/.babelrc +14 -0
  2. package/.eslintrc.json +108 -0
  3. package/.github/pull_request_template.md +18 -0
  4. package/.github/workflows/pepeline.yaml +30 -0
  5. package/README.md +1 -0
  6. package/jsconfig.json +28 -0
  7. package/next.config.js +129 -0
  8. package/package.json +33 -3
  9. package/src/cookies/index.ts +3 -0
  10. package/src/hooks/index.js +19 -0
  11. package/src/hooks/useAcumulateDate/index.js +16 -0
  12. package/src/hooks/useAnimationText/index.jsx +30 -0
  13. package/src/hooks/useCategoryStore/index.js +7 -0
  14. package/src/hooks/useCategoryStore/queries.js +16 -0
  15. package/src/hooks/useCheckbox/index.js +114 -0
  16. package/src/hooks/useClients/index.js +13 -0
  17. package/src/hooks/useClients/queries.js +118 -0
  18. package/src/hooks/useDrag/index.js +57 -0
  19. package/src/hooks/useEvent/index.js +33 -0
  20. package/src/hooks/useFetchJson/index.js +25 -0
  21. package/src/hooks/useFetchMoreInteractions/index.jsx +35 -0
  22. package/src/hooks/useFormTools/index.js +71 -0
  23. package/src/hooks/useFullScreenMode/index.js +66 -0
  24. package/src/hooks/useGetCategorieStore/index.js +21 -0
  25. package/src/hooks/useGetCategorieStore/queries.js +78 -0
  26. package/src/hooks/useGetProductsFood/index.js +46 -0
  27. package/src/hooks/useGetProductsFood/queriesStore.js +766 -0
  28. package/src/hooks/useHover/index.js +29 -0
  29. package/src/hooks/useInnerHtml/index.js +38 -0
  30. package/src/hooks/useIntersection/index.js +31 -0
  31. package/src/hooks/useKeypress/index.js +28 -0
  32. package/src/hooks/useLocalSorage/index.js +36 -0
  33. package/src/hooks/useLocationNavigate/index.js +54 -0
  34. package/src/hooks/useMobile/index.js +38 -0
  35. package/src/hooks/useRestaurant/index.js +19 -0
  36. package/src/hooks/useRestaurant/queries.js +70 -0
  37. package/src/hooks/useSales/index.js +489 -0
  38. package/src/hooks/useSales/queries.js +230 -0
  39. package/src/hooks/useSetState/index.js +24 -0
  40. package/src/hooks/useStore/index.js +18 -0
  41. package/src/hooks/useStore/queries.js +136 -0
  42. package/src/hooks/useTimeAgo/useTimeAgo.js +39 -0
  43. package/src/hooks/useUpdateCart/index.js +124 -0
  44. package/src/hooks/useUser/index.js +3 -0
  45. package/src/hooks/useWindowSize/index.js +38 -0
  46. package/src/index.jsx +1 -6
  47. package/src/utils/index.js +54 -0
@@ -0,0 +1,766 @@
1
+ import { gql } from '@apollo/client'
2
+
3
+ export const CREATE_SCHEDULE_STORE = gql`
4
+ mutation setStoreSchedule($input: IsStoreSchedule!){
5
+ setStoreSchedule(input: $input){
6
+ success
7
+ message
8
+ }
9
+ }
10
+ `
11
+ export const GET_SCHEDULE_STORE = gql`
12
+ query getStoreSchedules($schDay: Int, $idStore: ID) {
13
+ getStoreSchedules(schDay: $schDay, idStore: $idStore){
14
+ schId
15
+ idStore
16
+ schDay
17
+ schHoSta
18
+ schHoEnd
19
+ schState
20
+ }
21
+ }
22
+ `
23
+ export const GET_ONE_SCHEDULE_STORE = gql`
24
+ query getOneStoreSchedules($schDay: Int, $idStore: ID) {
25
+ getOneStoreSchedules(schDay: $schDay, idStore: $idStore){
26
+ schId
27
+ schDay
28
+ schHoSta
29
+ schHoEnd
30
+ schState
31
+ }
32
+ }
33
+ `
34
+ export const GET_CAT_OF_PRODUCTS = gql`
35
+ query getAllCatOfProducts($idStore: ID) {
36
+ getAllCatOfProducts(idStore: $idStore) {
37
+ id
38
+ cpId
39
+ catName
40
+ catDescription
41
+ schState
42
+
43
+ }
44
+ }
45
+ `
46
+ export const REGISTER_CAT_OF_PRODUCTS = gql`
47
+ mutation updatedProducts($input: InputCatProducts){
48
+ updatedProducts(input: $input){
49
+ success
50
+ message
51
+ }
52
+ }
53
+ `
54
+ export const REGISTER_CONTRACT_STORE = gql`
55
+ mutation createOneContract($input: InputContractType) {
56
+ createOneContract(input: $input) {
57
+ success
58
+ message
59
+ }
60
+ }
61
+ `
62
+ export const GET_ALL_EMPLOYEE_STORE = gql`
63
+ query employees ($umId: ID, $cId: ID, $aId: ID){
64
+ employees(umId: $umId, cId: $cId, aId: $aId) {
65
+ eId
66
+ idStore
67
+ id
68
+ idEmployee
69
+ eSalary
70
+ typeContract
71
+ uEmail
72
+ termContract
73
+ eDatAdm
74
+ eState
75
+
76
+ }
77
+ }
78
+ `
79
+ export const GET_ALL_PRODUCT_STORE = gql`
80
+ query productFoodsAll($search: String, $min: Int, $max: Int, $gender: [String], $pState: Int, $desc: [String], $categories: [ID], $fromDate: DateTime, $toDate: DateTime ) {
81
+ productFoodsAll(search: $search, min: $min, max: $max, gender: $gender, desc: $desc, pState: $pState categories: $categories, toDate: $toDate, fromDate: $fromDate) {
82
+ pId
83
+ sizeId #Talla
84
+ colorId #Color
85
+ cId #Country
86
+ dId #Department
87
+ ctId #Cuidad
88
+ fId #Características
89
+ pName
90
+ ProPrice
91
+ ProDescuento
92
+ free
93
+ ProUniDisponibles
94
+ ProDescription
95
+ ProProtegido
96
+ ProAssurance
97
+ ValueDelivery
98
+ ProStar
99
+ sTateLogistic
100
+ ProImage
101
+ ProWidth
102
+ ProHeight
103
+ ProLength
104
+ ProWeight
105
+ ProQuantity
106
+ ProOutstanding
107
+ pDatCre
108
+ pDatMod
109
+ ProDelivery
110
+ ProVoltaje
111
+ pState
112
+ feat {
113
+ fId
114
+ thpId
115
+ hpqrQuestion
116
+ }
117
+ area {
118
+ aId
119
+ aName
120
+ }
121
+
122
+ }
123
+ }
124
+
125
+ `
126
+ export const GET_ALL_RATING_START_STORE = gql`
127
+ query getAllRatingStar($idStore: ID){
128
+ getAllRatingStar(idStore: $idStore){
129
+ rSId
130
+ rScore
131
+ idStore
132
+ createAt
133
+ }
134
+ }
135
+ `
136
+ export const GET_ALL_VISITOR_STORE = gql`
137
+ query getAllVisitorStore($idStore: ID, $search: String, $min: Int, $max: Int, $fromDate: DateTime, $toDate: DateTime) {
138
+ getAllVisitorStore(idStore: $idStore, search: $search, min: $min, max: $max, fromDate: $fromDate, toDate: $toDate) {
139
+ visitStoreId
140
+ id
141
+ idStore
142
+ createAt
143
+ updateAt
144
+ }
145
+ }
146
+ `
147
+ export const GET_MIN_PEDIDO = gql`
148
+ query getMinPrice($idStore: ID){
149
+ getMinPrice(idStore: $idStore)
150
+ }
151
+ `
152
+
153
+ export const GET_All_RATING_STORE = gql`
154
+ query getAllRating($idStore: ID){
155
+ getAllRating(idStore: $idStore){
156
+ idStore
157
+ rId
158
+ id
159
+ rAppearance
160
+ rTasty
161
+ rGoodTemperature
162
+ rGoodCondition
163
+ rState
164
+ createAt
165
+ updateAt
166
+ }
167
+ }
168
+ `
169
+ export const CREATE_LOGO = gql`
170
+ mutation setALogoStore($logo: Upload, $idStore: ID) {
171
+ setALogoStore(logo: $logo, idStore: $idStore) {
172
+ success
173
+ message
174
+ }
175
+ }
176
+ `
177
+ export const CREATE_BANNER_STORE = gql`
178
+ mutation registerBanner($input: IBanner) {
179
+ registerBanner(input: $input) {
180
+ success
181
+ message
182
+
183
+ }
184
+ }
185
+ `
186
+ export const DELETE_ONE_LOGO_STORE = gql`
187
+ mutation deleteALogoStore($idStore: ID, $Image: String) {
188
+ deleteALogoStore(idStore: $idStore, Image: $Image) {
189
+ message
190
+ success
191
+ }
192
+
193
+ }
194
+ `
195
+ export const GET_ONE_BANNER_STORE = gql`
196
+ query getOneBanners($idStore: ID, $id: ID) {
197
+ getOneBanners(idStore: $idStore, id: $id) {
198
+ bnId
199
+ id
200
+ path
201
+ bnImageFileName
202
+ idStore
203
+ bnState
204
+ createAt
205
+ updateAt
206
+ }
207
+ }
208
+ `
209
+ export const DELETE_ONE_BANNER_STORE = gql`
210
+ mutation DeleteOneBanner($bnState: Int, $idStore: ID, $bnId: ID, $bnImage: String, $bnImageFileName: String) {
211
+ DeleteOneBanner(bnState: $bnState, idStore: $idStore, bnId: $bnId, bnImage: $bnImage, bnImageFileName: $bnImageFileName ) {
212
+ success
213
+ message
214
+
215
+ }
216
+ }
217
+ `
218
+
219
+ export const GET_ALL_PQR = gql`
220
+ query getOnePqr($hpqrId: ID, $thpId: ID){
221
+ getOnePqr(hpqrId: $hpqrId, thpId: $thpId ){
222
+ hpqrId
223
+ thpId
224
+ hpqrQuestion
225
+ }
226
+ }
227
+ `
228
+ export const GET_ONE_COLOR = gql`
229
+ query getAllColor{
230
+ getAllColor{
231
+ colorId
232
+ colorName
233
+ colorState
234
+ }
235
+ }
236
+ `
237
+ export const UPDATE = gql`
238
+ mutation updateProducts($input: InputProduct){
239
+ updateProducts(input: $input){
240
+ pId
241
+ sizeId #Talla
242
+ colorId #Color
243
+ cId #Country
244
+ dId #Department
245
+ ctId #Cuidad
246
+ fId #Características
247
+ pName
248
+ ProPrice
249
+ ProDescuento
250
+ ProUniDisponibles
251
+ ProDescription
252
+ ProProtegido
253
+ ProAssurance
254
+ ProStar
255
+ pState
256
+ ProImage
257
+ ProWidth
258
+ ProHeight
259
+ ProLength
260
+ ProWeight
261
+ ProQuantity
262
+ ProOutstanding
263
+ ProDelivery
264
+ ProVoltaje
265
+ }
266
+ }
267
+ `
268
+ export const UPDATE_IMAGE_PRODUCT_FOOD = gql`
269
+ mutation setImageProducts($input: IFileImageProductFood) {
270
+ setImageProducts(input: $input) {
271
+ success
272
+ message
273
+
274
+ }
275
+ }
276
+ `
277
+ export const UPDATE_PRODUCT_FOOD = gql`
278
+ mutation updateProductFoods($input: InputProductFood){
279
+ updateProductFoods(input: $input){
280
+ pId
281
+ sizeId #Talla
282
+ colorId #Color
283
+ cId #Country
284
+ dId #Department
285
+ ctId #Cuidad
286
+ fId #Características
287
+ pName
288
+ pCode
289
+ ProPrice
290
+ carProId
291
+ ProDescuento
292
+ ProUniDisponibles
293
+ ValueDelivery
294
+ ProDescription
295
+ ProProtegido
296
+ ProAssurance
297
+ ProStar
298
+ pState
299
+ ProImage
300
+ ProWidth
301
+ ProHeight
302
+ ProLength
303
+ ProWeight
304
+ ProQuantity
305
+ ProOutstanding
306
+ ProDelivery
307
+ ProVoltaje
308
+ }
309
+ }
310
+ `
311
+ // UPDATE EXTRAS
312
+ export const UPDATE_EXTRAS_PRODUCT_FOOD = gql`
313
+ mutation updateExtProductFoods($input: InputExtProductFood){
314
+ updateExtProductFoods(input: $input){
315
+ pId
316
+ exPid
317
+ exState
318
+ extraName
319
+ extraPrice
320
+ state
321
+ pDatCre
322
+ pDatMod
323
+ }
324
+ }
325
+ `
326
+ // EXTRA PRODUCTS
327
+ export const UPDATE_EXTRAS_PRODUCT_FOOD_OPTIONAL = gql`
328
+ mutation updateExtProductFoodsOptional($input: InputExtProductFoodOptional){
329
+ updateExtProductFoodsOptional(input: $input){
330
+ pId
331
+ opExPid
332
+ OptionalProName
333
+ code
334
+ required
335
+ state
336
+ numbersOptionalOnly
337
+ }
338
+ }
339
+ `
340
+ export const GET_EXTRAS_PRODUCT_FOOD_OPTIONAL = gql`
341
+ query ExtProductFoodsOptionalAll($search: String, $min: Int, $max: Int, $pId: ID) {
342
+ ExtProductFoodsOptionalAll(search: $search, min: $min, max: $max, pId: $pId) {
343
+ pId
344
+ opExPid
345
+ OptionalProName
346
+ state
347
+ code
348
+ numbersOptionalOnly
349
+ pDatCre
350
+ required
351
+ pDatMod
352
+ ExtProductFoodsSubOptionalAll {
353
+ pId
354
+ opExPid
355
+ idStore
356
+ opSubExPid
357
+ OptionalSubProName
358
+ exCodeOptionExtra
359
+ exCode
360
+ state
361
+ pDatCre
362
+ pDatMod
363
+ }
364
+
365
+ }
366
+ }
367
+ `
368
+ export const GET_EXTRAS_PRODUCT_FOOD_SUB_OPTIONAL = gql`
369
+ mutation updateExtProductFoodsSubOptional($input: InputExtProductFoodSubOptional){
370
+ updateExtProductFoodsSubOptional(input: $input){
371
+ pId
372
+ opExPid
373
+ idStore
374
+ opSubExPid
375
+ OptionalSubProName
376
+ exCodeOptionExtra
377
+ exCode
378
+ state
379
+ pDatCre
380
+ pDatMod
381
+ }
382
+ }
383
+ `
384
+
385
+ // CREATE EXTRAS PRODUCT
386
+ export const UPDATE_MULTI_EXTRAS_PRODUCT_FOOD = gql`
387
+ mutation updateMultipleExtProductFoods($inputLineItems: ILineItemsExtraFinal){
388
+ updateMultipleExtProductFoods(inputLineItems: $inputLineItems){
389
+ pId
390
+ exPid
391
+ exState
392
+ extraName
393
+ extraPrice
394
+ state
395
+ pDatCre
396
+ pDatMod
397
+ }
398
+ }
399
+ `
400
+
401
+ export const DELETE_ONE_PRODUCT = gql`
402
+ mutation deleteProducts($input: IDeleteProduct){
403
+ deleteProducts(input: $input){
404
+ pId
405
+ }
406
+ }
407
+ `
408
+ export const GET_ALL_PRODUCTS = gql`
409
+ query productsAll($search: String, $min: Int, $max: Int, $gender: [String], $desc: [String], $categories: [ID], ) {
410
+ productsAll(search: $search, min: $min, max: $max, gender: $gender, desc: $desc, categories: $categories,) {
411
+ pId
412
+ sizeId #Talla
413
+ colorId #Color
414
+ cId #Country
415
+ dId #Department
416
+ ctId #Cuidad
417
+ fId #Características
418
+ pName
419
+ ProPrice
420
+ ProDescuento
421
+ ProUniDisponibles
422
+ ProDescription
423
+ ProProtegido
424
+ ProAssurance
425
+ ProStar
426
+ sTateLogistic
427
+ ProImage
428
+ ProWidth
429
+ ProHeight
430
+ ProLength
431
+ ProWeight
432
+ ProQuantity
433
+ ProOutstanding
434
+ ProDelivery
435
+ ProVoltaje
436
+ pState
437
+ feat {
438
+ fId
439
+ thpId
440
+ hpqrQuestion
441
+ }
442
+ area {
443
+ aId
444
+ aName
445
+ }
446
+
447
+ }
448
+ }
449
+ `
450
+ export const GET_ALL_FOOD_PRODUCTS = gql`
451
+ query getFoodAllProduct($search: String, $min: Int, $max: Int, $gender: [String], $desc: [String], $categories: [ID], ) {
452
+ getFoodAllProduct(search: $search, min: $min, max: $max, gender: $gender, desc: $desc, categories: $categories,) {
453
+ id
454
+ pfId
455
+ idStore
456
+ ProPrice
457
+ ProDescuento
458
+ ProDescription
459
+ pName
460
+ pState
461
+ sTateLogistic
462
+ ProStar
463
+ ProImage
464
+ ProHeight
465
+ ProWeight
466
+ ProOutstanding
467
+ ProDelivery
468
+ pDatCre
469
+ pDatMod
470
+ }
471
+ }
472
+ `
473
+
474
+
475
+ export const EDIT_PRODUCT = gql`
476
+ mutation editProductFoods($input: InputProductFood) {
477
+ editProductFoods(input: $input) {
478
+ success
479
+ message
480
+ }
481
+ }
482
+ `
483
+ export const SET_EDIT_STORE_NAME = gql`
484
+ mutation setEditNameStore($StoreName: String){
485
+ setEditNameStore(StoreName: $StoreName){
486
+ success
487
+ message
488
+ }
489
+ }
490
+ `
491
+ export const GET_ONE_PRODUCTS_FOOD = gql`
492
+ query productFoodsOne($pId: ID){
493
+ productFoodsOne(pId: $pId ){
494
+ pId
495
+ carProId
496
+ pCode
497
+ sizeId
498
+ colorId
499
+ idStore
500
+ cId
501
+ caId
502
+ dId
503
+ ctId
504
+ tpId
505
+
506
+ fId
507
+ pName
508
+ ProPrice
509
+ ProDescuento
510
+ ValueDelivery
511
+ ProUniDisponibles
512
+ ProDescription
513
+ ProProtegido
514
+ ProAssurance
515
+ ProImage
516
+ ProStar
517
+ ProWidth
518
+ ProHeight
519
+ ProLength
520
+ ProWeight
521
+ ProQuantity
522
+ ProOutstanding
523
+ ProDelivery
524
+ ProVoltaje
525
+ pState
526
+ sTateLogistic
527
+ pDatCre
528
+ pDatMod
529
+ ExtProductFoodsAll {
530
+ pId
531
+ exPid
532
+ exState
533
+ extraName
534
+ extraPrice
535
+ state
536
+ pDatCre
537
+ pDatMod
538
+ }
539
+ getStore {
540
+ idStore
541
+ cId
542
+ id
543
+ dId
544
+ ctId
545
+ catStore
546
+ neighborhoodStore
547
+ Viaprincipal
548
+ storeOwner
549
+ storeName
550
+ emailStore
551
+ storePhone
552
+ socialRaz
553
+ Image
554
+ banner
555
+ documentIdentifier
556
+ uPhoNum
557
+ ULocation
558
+ upLat
559
+ upLon
560
+ uState
561
+ siteWeb
562
+ description
563
+ NitStore
564
+ typeRegiments
565
+ typeContribute
566
+ secVia
567
+ addressStore
568
+ createdAt
569
+ department {
570
+ dId
571
+ cId
572
+ dName
573
+ dDatCre
574
+ dDatMod
575
+ dState
576
+ }
577
+ pais {
578
+ cId
579
+ cName
580
+ cCalCod
581
+ cState
582
+
583
+ }
584
+ city {
585
+ ctId
586
+ dId
587
+ cName
588
+ cState
589
+ cDatCre
590
+ cDatMod
591
+ }
592
+ }
593
+
594
+ }
595
+ }
596
+ `
597
+
598
+
599
+ export const CREATE_FOOD_PRODUCT = gql`
600
+ mutation newRegisterFoodProduct($input: FoodProductInput){
601
+ newRegisterFoodProduct(input: $input){
602
+ success
603
+ message
604
+ }
605
+ }
606
+ `
607
+ export const GET_BANNER_PROMO_DASHBOARD = gql`
608
+ query getPromoStoreAdmin($min: Int, $max: Int){
609
+ getPromoStoreAdmin(min: $min, max: $max){
610
+ pSoId
611
+ comments
612
+ mainName
613
+ metaTags
614
+ urlImage
615
+ bPromoState
616
+ createAt
617
+ updateAt
618
+ }
619
+ }
620
+ `
621
+
622
+ export const CREATE_STORE_CALENDAR = gql`
623
+ mutation setStoreSchedule($input: ITstoreSchedule!){
624
+ setStoreSchedule(input: $input){
625
+ message
626
+ success
627
+ }
628
+ }
629
+ `
630
+ export const DELETE_ONE_CAT_PRODUCTS = gql`
631
+ mutation deleteCatOfProducts($idPc: ID!, $pState: Int){
632
+ deleteCatOfProducts(idPc: $idPc, pState: $pState){
633
+ success
634
+ message
635
+ }
636
+ }
637
+ `
638
+ export const DELETE_ONE_CAT_PRODUCTS_FINAL = gql`
639
+
640
+ mutation deleteCatFinalOfProducts($idPc: ID){
641
+ deleteCatFinalOfProducts(idPc: $idPc){
642
+ success
643
+ message
644
+ }
645
+ }
646
+ `
647
+ export const DELETE_EXTRA_PRODUCTS = gql`
648
+ mutation deleteextraproductfoods($id: ID, $state: Int){
649
+ deleteextraproductfoods(id: $id, state: $state){
650
+ success,
651
+ message
652
+ }
653
+ }
654
+ `
655
+ export const EDIT_EXTRA_PRODUCTS = gql`
656
+ mutation editExtProductFoods($input: InputExtProductFood!) {
657
+ editExtProductFoods(input: $input) {
658
+ success
659
+ message
660
+ }
661
+ }
662
+ `
663
+ export const DELETE_CAT_EXTRA_PRODUCTS = gql`
664
+ mutation DeleteExtProductFoodsOptional($opExPid: ID, $state: Int){
665
+ DeleteExtProductFoodsOptional(opExPid: $opExPid, state: $state){
666
+ success,
667
+ message
668
+ }
669
+ }
670
+ `
671
+ export const DELETE_CAT_EXTRA_SUB_OPTIONAL_PRODUCTS = gql`
672
+ mutation DeleteExtFoodSubsOptional($opSubExPid: ID, $state: Int){
673
+ DeleteExtFoodSubsOptional(opSubExPid: $opSubExPid, state: $state){
674
+ success,
675
+ message
676
+ }
677
+ }
678
+ `
679
+ export const UPDATE_CAT_IN_PRODUCT = gql`
680
+ mutation updatedCatWithProducts($input: LineItemsIdPro){
681
+ updatedCatWithProducts(input: $input){
682
+ success
683
+ message
684
+ }
685
+ }
686
+ `
687
+ export const GET_ULTIMATE_CATEGORY_PRODUCTS = gql`
688
+ query catProductsAll($search: String, $min: Int, $max: Int, $gender: [String], $desc: [String], $categories: [ID], ) {
689
+ catProductsAll(search: $search, min: $min, max: $max, gender: $gender, desc: $desc, categories: $categories,) {
690
+ carProId
691
+ idStore
692
+ pName
693
+ ProDescription
694
+ ProImage
695
+ pState
696
+ pDatCre
697
+ pDatMod
698
+ }
699
+ }
700
+ `
701
+ export const GET_ALL_EXTRA_PRODUCT = gql`
702
+ query ExtProductFoodsAll($search: String, $min: Int, $max: Int, $pId: ID) {
703
+ ExtProductFoodsAll(search: $search, min: $min, max: $max, pId: $pId) {
704
+ pId
705
+ exPid
706
+ exState
707
+ extraName
708
+ extraPrice
709
+ state
710
+ pDatCre
711
+ pDatMod
712
+ }
713
+ }
714
+ `
715
+ export const GET_ALL_CATEGORIES_WITH_PRODUCT = gql`
716
+ query getCatProductsWithProduct($search: String, $min: Int, $max: Int, $gender: [String], $desc: [String], $categories: [ID], ) {
717
+ getCatProductsWithProduct(search: $search, min: $min, max: $max, gender: $gender, desc: $desc, categories: $categories,) {
718
+ carProId
719
+ pState
720
+ pState
721
+ ProImage
722
+ idStore
723
+ pName
724
+ ProDescription
725
+ ProImage
726
+ pState
727
+ pDatCre
728
+ pDatMod
729
+ productFoodsAll {
730
+ pId
731
+ sizeId
732
+ colorId
733
+ carProId
734
+ cId
735
+ dId
736
+ ctId
737
+ idStore
738
+ caId
739
+ fId
740
+ pName
741
+ ProPrice
742
+ ProDescuento
743
+ ProUniDisponibles
744
+ ProDescription
745
+ ProProtegido
746
+ ProAssurance
747
+ ProImage
748
+ ProStar
749
+ ProWidth
750
+ ProHeight
751
+ ProLength
752
+ ProWeight
753
+ ProQuantity
754
+ ProOutstanding
755
+ ProDelivery
756
+ ProVoltaje
757
+ pState
758
+ sTateLogistic
759
+ pDatCre
760
+ pDatMod
761
+
762
+ }
763
+
764
+ }
765
+ }
766
+ `