ec_enhance.txt 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644
  1. query userbyid($id: ID) {
  2. userbyid: user_by_id(id: $id) {
  3. email
  4. updatedAt
  5. password
  6. telephone
  7. username
  8. createdAt
  9. openid
  10. id
  11. userData_id {
  12. id
  13. nickname
  14. avatar
  15. isVip
  16. vipCode
  17. userPoint
  18. createdAt
  19. updatedAt
  20. }
  21. }
  22. }
  23. query userSearchsearch($updatedAt: String, $limit: Int, $order_by: OrderBy, $createdAt: String, $filter: Filter, $breakout: Field, $user_id: ID, $aggregate: Aggregation, $skip: Int) {
  24. userSearchsearch: userSearch_search(updatedAt: $updatedAt limit: $limit order_by: $order_by createdAt: $createdAt filter: $filter breakout: $breakout user_id: $user_id aggregate: $aggregate skip: $skip)
  25. }
  26. query adminbyid($id: ID) {
  27. adminbyid: admin_by_id(id: $id) {
  28. id
  29. openid
  30. username
  31. password
  32. telephone
  33. email
  34. createdAt
  35. updatedAt
  36. }
  37. }
  38. query specificationStockbyid($id: ID) {
  39. specificationStockbyid: specificationStock_by_id(id: $id) {
  40. updatedAt
  41. color
  42. product_id {
  43. recommend
  44. updatedAt
  45. unit
  46. name
  47. createdAt
  48. slideImg
  49. status
  50. id
  51. intro
  52. discountRate
  53. price
  54. detailImg
  55. img
  56. stock
  57. }
  58. createdAt
  59. size
  60. slideImg
  61. status
  62. id
  63. detailImg
  64. stock
  65. }
  66. }
  67. query categorybyprops($updatedAt: String, $where: category_filter, $sort_by: category_sort_by, $limit: Int, $order_by: OrderBy, $name: String, $createdAt: String, $filter: Filter, $status: String, $order: Int, $img: String, $skip: Int) {
  68. categorybyprops: category_by_props(updatedAt: $updatedAt where: $where sort_by: $sort_by limit: $limit order_by: $order_by name: $name createdAt: $createdAt filter: $filter status: $status order: $order img: $img skip: $skip) {
  69. id
  70. name
  71. img
  72. order
  73. status
  74. createdAt
  75. updatedAt
  76. }
  77. }
  78. query orderPaybyprops($updatedAt: String, $where: orderPay_filter, $sort_by: orderPay_sort_by, $limit: Int, $tradeNo: String, $order_by: OrderBy, $transactionId: String, $time: String, $createdAt: String, $filter: Filter, $openid: String, $totalFee: Float, $user_id: ID, $cashFee: Float, $skip: Int) {
  79. orderPaybyprops: orderPay_by_props(updatedAt: $updatedAt where: $where sort_by: $sort_by limit: $limit tradeNo: $tradeNo order_by: $order_by transactionId: $transactionId time: $time createdAt: $createdAt filter: $filter openid: $openid totalFee: $totalFee user_id: $user_id cashFee: $cashFee skip: $skip) {
  80. updatedAt
  81. tradeNo
  82. transactionId
  83. time
  84. createdAt
  85. openid
  86. id
  87. totalFee
  88. user_id {
  89. email
  90. updatedAt
  91. password
  92. telephone
  93. username
  94. createdAt
  95. openid
  96. id
  97. }
  98. cashFee
  99. }
  100. }
  101. query userCartbyid($id: ID) {
  102. userCartbyid: userCart_by_id(id: $id) {
  103. id
  104. user_id {
  105. email
  106. updatedAt
  107. password
  108. telephone
  109. username
  110. createdAt
  111. openid
  112. id
  113. }
  114. product_id {
  115. recommend
  116. updatedAt
  117. unit
  118. name
  119. createdAt
  120. slideImg
  121. status
  122. id
  123. intro
  124. discountRate
  125. price
  126. detailImg
  127. img
  128. stock
  129. }
  130. specificationStock_id {
  131. updatedAt
  132. color
  133. createdAt
  134. size
  135. slideImg
  136. status
  137. id
  138. detailImg
  139. stock
  140. }
  141. count
  142. createdAt
  143. updatedAt
  144. }
  145. }
  146. query userDatabyid($id: ID) {
  147. userDatabyid: userData_by_id(id: $id) {
  148. id
  149. nickname
  150. avatar
  151. isVip
  152. vipCode
  153. userPoint
  154. createdAt
  155. updatedAt
  156. }
  157. }
  158. query adminbyprops($email: String, $updatedAt: String, $where: admin_filter, $sort_by: admin_sort_by, $limit: Int, $password: String, $order_by: OrderBy, $telephone: String, $username: String, $createdAt: String, $filter: Filter, $openid: String, $skip: Int) {
  159. adminbyprops: admin_by_props(email: $email updatedAt: $updatedAt where: $where sort_by: $sort_by limit: $limit password: $password order_by: $order_by telephone: $telephone username: $username createdAt: $createdAt filter: $filter openid: $openid skip: $skip) {
  160. id
  161. openid
  162. username
  163. password
  164. telephone
  165. email
  166. createdAt
  167. updatedAt
  168. }
  169. }
  170. query userSearchbyprops($updatedAt: String, $where: userSearch_filter, $sort_by: userSearch_sort_by, $limit: Int, $order_by: OrderBy, $createdAt: String, $filter: Filter, $user_id: ID, $skip: Int) {
  171. userSearchbyprops: userSearch_by_props(updatedAt: $updatedAt where: $where sort_by: $sort_by limit: $limit order_by: $order_by createdAt: $createdAt filter: $filter user_id: $user_id skip: $skip) {
  172. id
  173. user_id {
  174. email
  175. updatedAt
  176. password
  177. telephone
  178. username
  179. createdAt
  180. openid
  181. id
  182. }
  183. keyword
  184. createdAt
  185. updatedAt
  186. }
  187. }
  188. query userCollectbyprops($updatedAt: String, $where: userCollect_filter, $sort_by: userCollect_sort_by, $limit: Int, $order_by: OrderBy, $createdAt: String, $filter: Filter, $user_id: ID, $skip: Int) {
  189. userCollectbyprops: userCollect_by_props(updatedAt: $updatedAt where: $where sort_by: $sort_by limit: $limit order_by: $order_by createdAt: $createdAt filter: $filter user_id: $user_id skip: $skip) {
  190. id
  191. user_id {
  192. email
  193. updatedAt
  194. password
  195. telephone
  196. username
  197. createdAt
  198. openid
  199. id
  200. }
  201. product_id {
  202. recommend
  203. updatedAt
  204. unit
  205. name
  206. createdAt
  207. slideImg
  208. status
  209. id
  210. intro
  211. discountRate
  212. price
  213. detailImg
  214. img
  215. stock
  216. }
  217. createdAt
  218. updatedAt
  219. }
  220. }
  221. query productbyprops($recommend: Int, $updatedAt: String, $where: product_filter, $sort_by: product_sort_by, $limit: Int, $unit: String, $order_by: OrderBy, $name: String, $createdAt: String, $filter: Filter, $status: String, $intro: String, $discountRate: Float, $price: Float, $category_id: ID, $img: String, $stock: Int, $skip: Int) {
  222. productbyprops: product_by_props(recommend: $recommend updatedAt: $updatedAt where: $where sort_by: $sort_by limit: $limit unit: $unit order_by: $order_by name: $name createdAt: $createdAt filter: $filter status: $status intro: $intro discountRate: $discountRate price: $price category_id: $category_id img: $img stock: $stock skip: $skip) {
  223. recommend
  224. updatedAt
  225. unit
  226. name
  227. createdAt
  228. slideImg
  229. status
  230. id
  231. intro
  232. discountRate
  233. price
  234. detailImg
  235. category_id {
  236. id
  237. name
  238. img
  239. order
  240. status
  241. createdAt
  242. updatedAt
  243. }
  244. img
  245. stock
  246. }
  247. }
  248. query orderLogisticsbyid($id: ID) {
  249. orderLogisticsbyid: orderLogistics_by_id(id: $id) {
  250. deliveryTime
  251. serviceStore
  252. updatedAt
  253. logisticsFee
  254. expressDetailName
  255. expressId
  256. createdAt
  257. order_id {
  258. remark
  259. updatedAt
  260. orderTotalPay
  261. createdAt
  262. orderStatus
  263. id
  264. count
  265. productTotalPay
  266. }
  267. consigneeTel
  268. id
  269. expressName
  270. consignAddress
  271. LogisticsStatus
  272. user_id {
  273. email
  274. updatedAt
  275. password
  276. telephone
  277. username
  278. createdAt
  279. openid
  280. id
  281. }
  282. consigneeName
  283. }
  284. }
  285. query orderProductsearch($updatedAt: String, $limit: Int, $productColor: String, $unit: String, $product_id: ID, $productSize: String, $order_by: OrderBy, $orderPay: Float, $createdAt: String, $productImg: String, $productName: String, $specificationStock_id: ID, $filter: Filter, $order_id: ID, $productPrice: Float, $count: Int, $productPay: Float, $breakout: Field, $user_id: ID, $aggregate: Aggregation, $orderPay_id: ID, $skip: Int) {
  286. orderProductsearch: orderProduct_search(updatedAt: $updatedAt limit: $limit productColor: $productColor unit: $unit product_id: $product_id productSize: $productSize order_by: $order_by orderPay: $orderPay createdAt: $createdAt productImg: $productImg productName: $productName specificationStock_id: $specificationStock_id filter: $filter order_id: $order_id productPrice: $productPrice count: $count productPay: $productPay breakout: $breakout user_id: $user_id aggregate: $aggregate orderPay_id: $orderPay_id skip: $skip)
  287. }
  288. query specificationStockbyprops($updatedAt: String, $where: specificationStock_filter, $color: String, $sort_by: specificationStock_sort_by, $limit: Int, $product_id: ID, $order_by: OrderBy, $createdAt: String, $size: String, $filter: Filter, $status: String, $stock: Int, $skip: Int) {
  289. specificationStockbyprops: specificationStock_by_props(updatedAt: $updatedAt where: $where color: $color sort_by: $sort_by limit: $limit product_id: $product_id order_by: $order_by createdAt: $createdAt size: $size filter: $filter status: $status stock: $stock skip: $skip) {
  290. updatedAt
  291. color
  292. product_id {
  293. recommend
  294. updatedAt
  295. unit
  296. name
  297. createdAt
  298. slideImg
  299. status
  300. id
  301. intro
  302. discountRate
  303. price
  304. detailImg
  305. img
  306. stock
  307. }
  308. createdAt
  309. size
  310. slideImg
  311. status
  312. id
  313. detailImg
  314. stock
  315. }
  316. }
  317. query orderProductbyid($id: ID) {
  318. orderProductbyid: orderProduct_by_id(id: $id) {
  319. updatedAt
  320. productColor
  321. unit
  322. product_id {
  323. recommend
  324. updatedAt
  325. unit
  326. name
  327. createdAt
  328. slideImg
  329. status
  330. id
  331. intro
  332. discountRate
  333. price
  334. detailImg
  335. img
  336. stock
  337. }
  338. productSize
  339. orderPay
  340. createdAt
  341. productImg
  342. productName
  343. specificationStock_id {
  344. updatedAt
  345. color
  346. createdAt
  347. size
  348. slideImg
  349. status
  350. id
  351. detailImg
  352. stock
  353. }
  354. order_id {
  355. remark
  356. updatedAt
  357. orderTotalPay
  358. createdAt
  359. orderStatus
  360. id
  361. count
  362. productTotalPay
  363. }
  364. productPrice
  365. id
  366. count
  367. productPay
  368. user_id {
  369. email
  370. updatedAt
  371. password
  372. telephone
  373. username
  374. createdAt
  375. openid
  376. id
  377. }
  378. orderPay_id {
  379. updatedAt
  380. tradeNo
  381. transactionId
  382. time
  383. createdAt
  384. openid
  385. id
  386. totalFee
  387. cashFee
  388. }
  389. }
  390. }
  391. query userCollectbyid($id: ID) {
  392. userCollectbyid: userCollect_by_id(id: $id) {
  393. id
  394. user_id {
  395. email
  396. updatedAt
  397. password
  398. telephone
  399. username
  400. createdAt
  401. openid
  402. id
  403. }
  404. product_id {
  405. recommend
  406. updatedAt
  407. unit
  408. name
  409. createdAt
  410. slideImg
  411. status
  412. id
  413. intro
  414. discountRate
  415. price
  416. detailImg
  417. img
  418. stock
  419. }
  420. createdAt
  421. updatedAt
  422. }
  423. }
  424. query userAddressbyprops($address: String, $updatedAt: String, $where: userAddress_filter, $sort_by: userAddress_sort_by, $limit: Int, $order_by: OrderBy, $telephone: String, $default: Int, $city: String, $username: String, $postcode: String, $createdAt: String, $deletedAt: String, $filter: Filter, $user_id: ID, $area: String, $province: String, $skip: Int) {
  425. userAddressbyprops: userAddress_by_props(address: $address updatedAt: $updatedAt where: $where sort_by: $sort_by limit: $limit order_by: $order_by telephone: $telephone
  426. default: $default city: $city username: $username postcode: $postcode createdAt: $createdAt deletedAt: $deletedAt filter: $filter user_id: $user_id area: $area province: $province skip: $skip) {
  427. address
  428. updatedAt
  429. telephone
  430. default
  431. city
  432. username
  433. postcode
  434. createdAt
  435. deletedAt
  436. id
  437. user_id {
  438. email
  439. updatedAt
  440. password
  441. telephone
  442. username
  443. createdAt
  444. openid
  445. id
  446. }
  447. area
  448. province
  449. }
  450. }
  451. query orderPaybyid($id: ID) {
  452. orderPaybyid: orderPay_by_id(id: $id) {
  453. updatedAt
  454. tradeNo
  455. transactionId
  456. time
  457. createdAt
  458. openid
  459. id
  460. totalFee
  461. user_id {
  462. email
  463. updatedAt
  464. password
  465. telephone
  466. username
  467. createdAt
  468. openid
  469. id
  470. }
  471. cashFee
  472. }
  473. }
  474. query userAddressbyid($id: ID) {
  475. userAddressbyid: userAddress_by_id(id: $id) {
  476. address
  477. updatedAt
  478. telephone
  479. default
  480. city
  481. username
  482. postcode
  483. createdAt
  484. deletedAt
  485. id
  486. user_id {
  487. email
  488. updatedAt
  489. password
  490. telephone
  491. username
  492. createdAt
  493. openid
  494. id
  495. }
  496. area
  497. province
  498. }
  499. }
  500. query slideshowsearch($updatedAt: String, $limit: Int, $order_by: OrderBy, $name: String, $createdAt: String, $filter: Filter, $status: Int, $breakout: Field, $aggregate: Aggregation, $img: String, $skip: Int) {
  501. slideshowsearch: slideshow_search(updatedAt: $updatedAt limit: $limit order_by: $order_by name: $name createdAt: $createdAt filter: $filter status: $status breakout: $breakout aggregate: $aggregate img: $img skip: $skip)
  502. }
  503. query slideshowbyid($id: ID) {
  504. slideshowbyid: slideshow_by_id(id: $id) {
  505. id
  506. name
  507. img
  508. status
  509. createdAt
  510. updatedAt
  511. }
  512. }
  513. query categorysearch($updatedAt: String, $limit: Int, $order_by: OrderBy, $name: String, $createdAt: String, $filter: Filter, $status: String, $breakout: Field, $order: Int, $aggregate: Aggregation, $img: String, $skip: Int) {
  514. categorysearch: category_search(updatedAt: $updatedAt limit: $limit order_by: $order_by name: $name createdAt: $createdAt filter: $filter status: $status breakout: $breakout order: $order aggregate: $aggregate img: $img skip: $skip)
  515. }
  516. query shopsearch($description: String, $address: String, $updatedAt: String, $limit: Int, $order_by: OrderBy, $telephone: String, $name: String, $createdAt: String, $filter: Filter, $status: String, $breakout: Field, $notice: String, $intro: String, $aggregate: Aggregation, $skip: Int) {
  517. shopsearch: shop_search(description: $description address: $address updatedAt: $updatedAt limit: $limit order_by: $order_by telephone: $telephone name: $name createdAt: $createdAt filter: $filter status: $status breakout: $breakout notice: $notice intro: $intro aggregate: $aggregate skip: $skip)
  518. }
  519. query orderLogisticsbyprops($deliveryTime: String, $serviceStore: String, $updatedAt: String, $where: orderLogistics_filter, $logisticsFee: Float, $expressDetailName: String, $sort_by: orderLogistics_sort_by, $limit: Int, $expressId: String, $order_by: OrderBy, $createdAt: String, $filter: Filter, $order_id: ID, $consigneeTel: String, $expressName: String, $consignAddress: String, $LogisticsStatus: String, $user_id: ID, $consigneeName: String, $skip: Int) {
  520. orderLogisticsbyprops: orderLogistics_by_props(deliveryTime: $deliveryTime serviceStore: $serviceStore updatedAt: $updatedAt where: $where logisticsFee: $logisticsFee expressDetailName: $expressDetailName sort_by: $sort_by limit: $limit expressId: $expressId order_by: $order_by createdAt: $createdAt filter: $filter order_id: $order_id consigneeTel: $consigneeTel expressName: $expressName consignAddress: $consignAddress LogisticsStatus: $LogisticsStatus user_id: $user_id consigneeName: $consigneeName skip: $skip) {
  521. deliveryTime
  522. serviceStore
  523. updatedAt
  524. logisticsFee
  525. expressDetailName
  526. expressId
  527. createdAt
  528. order_id {
  529. remark
  530. updatedAt
  531. orderTotalPay
  532. createdAt
  533. orderStatus
  534. id
  535. count
  536. productTotalPay
  537. }
  538. consigneeTel
  539. id
  540. expressName
  541. consignAddress
  542. LogisticsStatus
  543. user_id {
  544. email
  545. updatedAt
  546. password
  547. telephone
  548. username
  549. createdAt
  550. openid
  551. id
  552. }
  553. consigneeName
  554. }
  555. }
  556. query shopbyprops($description: String, $address: String, $updatedAt: String, $where: shop_filter, $sort_by: shop_sort_by, $limit: Int, $order_by: OrderBy, $telephone: String, $name: String, $createdAt: String, $filter: Filter, $status: String, $notice: String, $intro: String, $skip: Int) {
  557. shopbyprops: shop_by_props(description: $description address: $address updatedAt: $updatedAt where: $where sort_by: $sort_by limit: $limit order_by: $order_by telephone: $telephone name: $name createdAt: $createdAt filter: $filter status: $status notice: $notice intro: $intro skip: $skip) {
  558. description
  559. address
  560. updatedAt
  561. telephone
  562. name
  563. createdAt
  564. status
  565. id
  566. slideshow
  567. notice
  568. intro
  569. img
  570. }
  571. }
  572. query usersearch($email: String, $updatedAt: String, $limit: Int, $password: String, $order_by: OrderBy, $telephone: String, $username: String, $createdAt: String, $filter: Filter, $openid: String, $breakout: Field, $userData_id: ID, $aggregate: Aggregation, $skip: Int) {
  573. usersearch: user_search(email: $email updatedAt: $updatedAt limit: $limit password: $password order_by: $order_by telephone: $telephone username: $username createdAt: $createdAt filter: $filter openid: $openid breakout: $breakout userData_id: $userData_id aggregate: $aggregate skip: $skip)
  574. }
  575. query orderPaysearch($updatedAt: String, $limit: Int, $tradeNo: String, $order_by: OrderBy, $transactionId: String, $time: String, $createdAt: String, $filter: Filter, $openid: String, $breakout: Field, $totalFee: Float, $user_id: ID, $aggregate: Aggregation, $cashFee: Float, $skip: Int) {
  576. orderPaysearch: orderPay_search(updatedAt: $updatedAt limit: $limit tradeNo: $tradeNo order_by: $order_by transactionId: $transactionId time: $time createdAt: $createdAt filter: $filter openid: $openid breakout: $breakout totalFee: $totalFee user_id: $user_id aggregate: $aggregate cashFee: $cashFee skip: $skip)
  577. }
  578. query orderbyid($id: ID) {
  579. orderbyid: order_by_id(id: $id) {
  580. remark
  581. updatedAt
  582. orderLogistics_id {
  583. deliveryTime
  584. serviceStore
  585. updatedAt
  586. logisticsFee
  587. expressDetailName
  588. expressId
  589. createdAt
  590. consigneeTel
  591. id
  592. expressName
  593. consignAddress
  594. LogisticsStatus
  595. consigneeName
  596. }
  597. orderTotalPay
  598. createdAt
  599. orderStatus
  600. id
  601. count
  602. user_id {
  603. email
  604. updatedAt
  605. password
  606. telephone
  607. username
  608. createdAt
  609. openid
  610. id
  611. }
  612. productTotalPay
  613. orderPay_id {
  614. updatedAt
  615. tradeNo
  616. transactionId
  617. time
  618. createdAt
  619. openid
  620. id
  621. totalFee
  622. cashFee
  623. }
  624. }
  625. }
  626. query orderLogisticssearch($deliveryTime: String, $serviceStore: String, $updatedAt: String, $logisticsFee: Float, $expressDetailName: String, $limit: Int, $expressId: String, $order_by: OrderBy, $createdAt: String, $filter: Filter, $order_id: ID, $consigneeTel: String, $expressName: String, $breakout: Field, $consignAddress: String, $LogisticsStatus: String, $user_id: ID, $aggregate: Aggregation, $consigneeName: String, $skip: Int) {
  627. orderLogisticssearch: orderLogistics_search(deliveryTime: $deliveryTime serviceStore: $serviceStore updatedAt: $updatedAt logisticsFee: $logisticsFee expressDetailName: $expressDetailName limit: $limit expressId: $expressId order_by: $order_by createdAt: $createdAt filter: $filter order_id: $order_id consigneeTel: $consigneeTel expressName: $expressName breakout: $breakout consignAddress: $consignAddress LogisticsStatus: $LogisticsStatus user_id: $user_id aggregate: $aggregate consigneeName: $consigneeName skip: $skip)
  628. }
  629. query orderProductbyprops($updatedAt: String, $where: orderProduct_filter, $sort_by: orderProduct_sort_by, $limit: Int, $productColor: String, $unit: String, $product_id: ID, $productSize: String, $order_by: OrderBy, $orderPay: Float, $createdAt: String, $productImg: String, $productName: String, $specificationStock_id: ID, $filter: Filter, $order_id: ID, $productPrice: Float, $count: Int, $productPay: Float, $user_id: ID, $orderPay_id: ID, $skip: Int) {
  630. orderProductbyprops: orderProduct_by_props(updatedAt: $updatedAt where: $where sort_by: $sort_by limit: $limit productColor: $productColor unit: $unit product_id: $product_id productSize: $productSize order_by: $order_by orderPay: $orderPay createdAt: $createdAt productImg: $productImg productName: $productName specificationStock_id: $specificationStock_id filter: $filter order_id: $order_id productPrice: $productPrice count: $count productPay: $productPay user_id: $user_id orderPay_id: $orderPay_id skip: $skip) {
  631. updatedAt
  632. productColor
  633. unit
  634. product_id {
  635. recommend
  636. updatedAt
  637. unit
  638. name
  639. createdAt
  640. slideImg
  641. status
  642. id
  643. intro
  644. discountRate
  645. price
  646. detailImg
  647. img
  648. stock
  649. }
  650. productSize
  651. orderPay
  652. createdAt
  653. productImg
  654. productName
  655. specificationStock_id {
  656. updatedAt
  657. color
  658. createdAt
  659. size
  660. slideImg
  661. status
  662. id
  663. detailImg
  664. stock
  665. }
  666. order_id {
  667. remark
  668. updatedAt
  669. orderTotalPay
  670. createdAt
  671. orderStatus
  672. id
  673. count
  674. productTotalPay
  675. }
  676. productPrice
  677. id
  678. count
  679. productPay
  680. user_id {
  681. email
  682. updatedAt
  683. password
  684. telephone
  685. username
  686. createdAt
  687. openid
  688. id
  689. }
  690. orderPay_id {
  691. updatedAt
  692. tradeNo
  693. transactionId
  694. time
  695. createdAt
  696. openid
  697. id
  698. totalFee
  699. cashFee
  700. }
  701. }
  702. }
  703. query productbyid($id: ID) {
  704. productbyid: product_by_id(id: $id) {
  705. recommend
  706. updatedAt
  707. unit
  708. name
  709. createdAt
  710. slideImg
  711. status
  712. id
  713. intro
  714. discountRate
  715. price
  716. detailImg
  717. category_id {
  718. id
  719. name
  720. img
  721. order
  722. status
  723. createdAt
  724. updatedAt
  725. }
  726. img
  727. stock
  728. }
  729. }
  730. query userSearchbyid($id: ID) {
  731. userSearchbyid: userSearch_by_id(id: $id) {
  732. id
  733. user_id {
  734. email
  735. updatedAt
  736. password
  737. telephone
  738. username
  739. createdAt
  740. openid
  741. id
  742. }
  743. keyword
  744. createdAt
  745. updatedAt
  746. }
  747. }
  748. query userDatabyprops($updatedAt: String, $where: userData_filter, $userPoint: Int, $sort_by: userData_sort_by, $limit: Int, $order_by: OrderBy, $nickname: String, $createdAt: String, $filter: Filter, $avatar: String, $vipCode: String, $isVip: Boolean, $skip: Int) {
  749. userDatabyprops: userData_by_props(updatedAt: $updatedAt where: $where userPoint: $userPoint sort_by: $sort_by limit: $limit order_by: $order_by nickname: $nickname createdAt: $createdAt filter: $filter avatar: $avatar vipCode: $vipCode isVip: $isVip skip: $skip) {
  750. id
  751. nickname
  752. avatar
  753. isVip
  754. vipCode
  755. userPoint
  756. createdAt
  757. updatedAt
  758. }
  759. }
  760. query userAddresssearch($address: String, $updatedAt: String, $limit: Int, $order_by: OrderBy, $telephone: String, $default: Int, $city: String, $username: String, $postcode: String, $createdAt: String, $deletedAt: String, $filter: Filter, $breakout: Field, $user_id: ID, $area: String, $aggregate: Aggregation, $province: String, $skip: Int) {
  761. userAddresssearch: userAddress_search(address: $address updatedAt: $updatedAt limit: $limit order_by: $order_by telephone: $telephone
  762. default: $default city: $city username: $username postcode: $postcode createdAt: $createdAt deletedAt: $deletedAt filter: $filter breakout: $breakout user_id: $user_id area: $area aggregate: $aggregate province: $province skip: $skip)
  763. }
  764. query specificationStocksearch($updatedAt: String, $color: String, $limit: Int, $product_id: ID, $order_by: OrderBy, $createdAt: String, $size: String, $filter: Filter, $status: String, $breakout: Field, $aggregate: Aggregation, $stock: Int, $skip: Int) {
  765. specificationStocksearch: specificationStock_search(updatedAt: $updatedAt color: $color limit: $limit product_id: $product_id order_by: $order_by createdAt: $createdAt size: $size filter: $filter status: $status breakout: $breakout aggregate: $aggregate stock: $stock skip: $skip)
  766. }
  767. query categorybyid($id: ID) {
  768. categorybyid: category_by_id(id: $id) {
  769. id
  770. name
  771. img
  772. order
  773. status
  774. createdAt
  775. updatedAt
  776. }
  777. }
  778. query userCartsearch($updatedAt: String, $limit: Int, $product_id: ID, $order_by: OrderBy, $createdAt: String, $specificationStock_id: ID, $filter: Filter, $count: Int, $breakout: Field, $user_id: ID, $aggregate: Aggregation, $skip: Int) {
  779. userCartsearch: userCart_search(updatedAt: $updatedAt limit: $limit product_id: $product_id order_by: $order_by createdAt: $createdAt specificationStock_id: $specificationStock_id filter: $filter count: $count breakout: $breakout user_id: $user_id aggregate: $aggregate skip: $skip)
  780. }
  781. query userCartbyprops($updatedAt: String, $where: userCart_filter, $sort_by: userCart_sort_by, $limit: Int, $product_id: ID, $order_by: OrderBy, $createdAt: String, $specificationStock_id: ID, $filter: Filter, $count: Int, $user_id: ID, $skip: Int) {
  782. userCartbyprops: userCart_by_props(updatedAt: $updatedAt where: $where sort_by: $sort_by limit: $limit product_id: $product_id order_by: $order_by createdAt: $createdAt specificationStock_id: $specificationStock_id filter: $filter count: $count user_id: $user_id skip: $skip) {
  783. id
  784. user_id {
  785. email
  786. updatedAt
  787. password
  788. telephone
  789. username
  790. createdAt
  791. openid
  792. id
  793. }
  794. product_id {
  795. recommend
  796. updatedAt
  797. unit
  798. name
  799. createdAt
  800. slideImg
  801. status
  802. id
  803. intro
  804. discountRate
  805. price
  806. detailImg
  807. img
  808. stock
  809. }
  810. specificationStock_id {
  811. updatedAt
  812. color
  813. createdAt
  814. size
  815. slideImg
  816. status
  817. id
  818. detailImg
  819. stock
  820. }
  821. count
  822. createdAt
  823. updatedAt
  824. }
  825. }
  826. query adminsearch($email: String, $updatedAt: String, $limit: Int, $password: String, $order_by: OrderBy, $telephone: String, $username: String, $createdAt: String, $filter: Filter, $openid: String, $breakout: Field, $aggregate: Aggregation, $skip: Int) {
  827. adminsearch: admin_search(email: $email updatedAt: $updatedAt limit: $limit password: $password order_by: $order_by telephone: $telephone username: $username createdAt: $createdAt filter: $filter openid: $openid breakout: $breakout aggregate: $aggregate skip: $skip)
  828. }
  829. query userDatasearch($updatedAt: String, $userPoint: Int, $limit: Int, $order_by: OrderBy, $nickname: String, $createdAt: String, $filter: Filter, $avatar: String, $breakout: Field, $vipCode: String, $aggregate: Aggregation, $isVip: Boolean, $skip: Int) {
  830. userDatasearch: userData_search(updatedAt: $updatedAt userPoint: $userPoint limit: $limit order_by: $order_by nickname: $nickname createdAt: $createdAt filter: $filter avatar: $avatar breakout: $breakout vipCode: $vipCode aggregate: $aggregate isVip: $isVip skip: $skip)
  831. }
  832. query ordersearch($remark: String, $updatedAt: String, $orderLogistics_id: ID, $limit: Int, $order_by: OrderBy, $orderTotalPay: Float, $createdAt: String, $orderStatus: String, $filter: Filter, $count: Int, $breakout: Field, $user_id: ID, $productTotalPay: Float, $aggregate: Aggregation, $orderPay_id: ID, $skip: Int) {
  833. ordersearch: order_search(remark: $remark updatedAt: $updatedAt orderLogistics_id: $orderLogistics_id limit: $limit order_by: $order_by orderTotalPay: $orderTotalPay createdAt: $createdAt orderStatus: $orderStatus filter: $filter count: $count breakout: $breakout user_id: $user_id productTotalPay: $productTotalPay aggregate: $aggregate orderPay_id: $orderPay_id skip: $skip)
  834. }
  835. query shopbyid($id: ID) {
  836. shopbyid: shop_by_id(id: $id) {
  837. description
  838. address
  839. updatedAt
  840. telephone
  841. name
  842. createdAt
  843. status
  844. id
  845. slideshow
  846. notice
  847. intro
  848. img
  849. }
  850. }
  851. query productsearch($recommend: Int, $updatedAt: String, $limit: Int, $unit: String, $order_by: OrderBy, $name: String, $createdAt: String, $filter: Filter, $status: String, $breakout: Field, $intro: String, $aggregate: Aggregation, $discountRate: Float, $price: Float, $category_id: ID, $img: String, $stock: Int, $skip: Int) {
  852. productsearch: product_search(recommend: $recommend updatedAt: $updatedAt limit: $limit unit: $unit order_by: $order_by name: $name createdAt: $createdAt filter: $filter status: $status breakout: $breakout intro: $intro aggregate: $aggregate discountRate: $discountRate price: $price category_id: $category_id img: $img stock: $stock skip: $skip)
  853. }
  854. query userCollectsearch($updatedAt: String, $limit: Int, $order_by: OrderBy, $createdAt: String, $filter: Filter, $breakout: Field, $user_id: ID, $aggregate: Aggregation, $skip: Int) {
  855. userCollectsearch: userCollect_search(updatedAt: $updatedAt limit: $limit order_by: $order_by createdAt: $createdAt filter: $filter breakout: $breakout user_id: $user_id aggregate: $aggregate skip: $skip)
  856. }
  857. query userbyprops($email: String, $updatedAt: String, $where: user_filter, $sort_by: user_sort_by, $limit: Int, $password: String, $order_by: OrderBy, $telephone: String, $username: String, $createdAt: String, $filter: Filter, $openid: String, $userData_id: ID, $skip: Int) {
  858. userbyprops: user_by_props(email: $email updatedAt: $updatedAt where: $where sort_by: $sort_by limit: $limit password: $password order_by: $order_by telephone: $telephone username: $username createdAt: $createdAt filter: $filter openid: $openid userData_id: $userData_id skip: $skip) {
  859. email
  860. updatedAt
  861. password
  862. telephone
  863. username
  864. createdAt
  865. openid
  866. id
  867. userData_id {
  868. id
  869. nickname
  870. avatar
  871. isVip
  872. vipCode
  873. userPoint
  874. createdAt
  875. updatedAt
  876. }
  877. }
  878. }
  879. query orderbyprops($remark: String, $updatedAt: String, $where: order_filter, $orderLogistics_id: ID, $sort_by: order_sort_by, $limit: Int, $order_by: OrderBy, $orderTotalPay: Float, $createdAt: String, $orderStatus: String, $filter: Filter, $count: Int, $user_id: ID, $productTotalPay: Float, $orderPay_id: ID, $skip: Int) {
  880. orderbyprops: order_by_props(remark: $remark updatedAt: $updatedAt where: $where orderLogistics_id: $orderLogistics_id sort_by: $sort_by limit: $limit order_by: $order_by orderTotalPay: $orderTotalPay createdAt: $createdAt orderStatus: $orderStatus filter: $filter count: $count user_id: $user_id productTotalPay: $productTotalPay orderPay_id: $orderPay_id skip: $skip) {
  881. remark
  882. updatedAt
  883. orderLogistics_id {
  884. deliveryTime
  885. serviceStore
  886. updatedAt
  887. logisticsFee
  888. expressDetailName
  889. expressId
  890. createdAt
  891. consigneeTel
  892. id
  893. expressName
  894. consignAddress
  895. LogisticsStatus
  896. consigneeName
  897. }
  898. orderTotalPay
  899. createdAt
  900. orderStatus
  901. id
  902. count
  903. user_id {
  904. email
  905. updatedAt
  906. password
  907. telephone
  908. username
  909. createdAt
  910. openid
  911. id
  912. }
  913. productTotalPay
  914. orderPay_id {
  915. updatedAt
  916. tradeNo
  917. transactionId
  918. time
  919. createdAt
  920. openid
  921. id
  922. totalFee
  923. cashFee
  924. }
  925. }
  926. }
  927. query slideshowbyprops($updatedAt: String, $where: slideshow_filter, $sort_by: slideshow_sort_by, $limit: Int, $order_by: OrderBy, $name: String, $createdAt: String, $filter: Filter, $status: Int, $img: String, $skip: Int) {
  928. slideshowbyprops: slideshow_by_props(updatedAt: $updatedAt where: $where sort_by: $sort_by limit: $limit order_by: $order_by name: $name createdAt: $createdAt filter: $filter status: $status img: $img skip: $skip) {
  929. id
  930. name
  931. img
  932. status
  933. createdAt
  934. updatedAt
  935. }
  936. }
  937. mutation createorderPay($updatedAt: String, $tradeNo: String, $transactionId: String, $time: String, $createdAt: String, $openid: String, $id: ID!, $totalFee: Float, $user_id: ID, $cashFee: Float) {
  938. createorderPay: create_orderPay(updatedAt: $updatedAt tradeNo: $tradeNo transactionId: $transactionId time: $time createdAt: $createdAt openid: $openid id: $id totalFee: $totalFee user_id: $user_id cashFee: $cashFee) {
  939. result
  940. orderPay {
  941. updatedAt
  942. tradeNo
  943. transactionId
  944. time
  945. createdAt
  946. openid
  947. id
  948. totalFee
  949. cashFee
  950. }
  951. }
  952. }
  953. mutation createuser($email: String, $updatedAt: String, $password: String, $telephone: String, $username: String, $createdAt: String, $openid: String, $id: ID!, $userData_id: ID) {
  954. createuser: create_user(email: $email updatedAt: $updatedAt password: $password telephone: $telephone username: $username createdAt: $createdAt openid: $openid id: $id userData_id: $userData_id) {
  955. result
  956. user {
  957. email
  958. updatedAt
  959. password
  960. telephone
  961. username
  962. createdAt
  963. openid
  964. id
  965. }
  966. }
  967. }
  968. mutation updateslideshow($id: ID, $name: String, $img: String, $status: Int, $createdAt: String, $updatedAt: String, $where: slideshow_filter) {
  969. updateslideshow: update_slideshow(id: $id name: $name img: $img status: $status createdAt: $createdAt updatedAt: $updatedAt where: $where) {
  970. result
  971. slideshow {
  972. id
  973. name
  974. img
  975. status
  976. createdAt
  977. updatedAt
  978. }
  979. }
  980. }
  981. mutation updateshop($description: String, $address: String, $updatedAt: String, $where: shop_filter, $telephone: String, $name: String, $createdAt: String, $status: String, $id: ID, $slideshow: String, $notice: String, $intro: String, $img: String) {
  982. updateshop: update_shop(description: $description address: $address updatedAt: $updatedAt where: $where telephone: $telephone name: $name createdAt: $createdAt status: $status id: $id slideshow: $slideshow notice: $notice intro: $intro img: $img) {
  983. result
  984. shop {
  985. description
  986. address
  987. updatedAt
  988. telephone
  989. name
  990. createdAt
  991. status
  992. id
  993. slideshow
  994. notice
  995. intro
  996. img
  997. }
  998. }
  999. }
  1000. mutation deletecategory($id: ID, $name: String, $img: String, $order: Int, $status: String, $createdAt: String, $updatedAt: String, $where: category_filter) {
  1001. deletecategory: delete_category(id: $id name: $name img: $img order: $order status: $status createdAt: $createdAt updatedAt: $updatedAt where: $where)
  1002. }
  1003. mutation updateproduct($recommend: Int, $updatedAt: String, $where: product_filter, $unit: String, $name: String, $createdAt: String, $slideImg: String, $status: String, $id: ID, $intro: String, $discountRate: Float, $price: Float, $detailImg: String, $category_id: ID, $img: String, $stock: Int) {
  1004. updateproduct: update_product(recommend: $recommend updatedAt: $updatedAt where: $where unit: $unit name: $name createdAt: $createdAt slideImg: $slideImg status: $status id: $id intro: $intro discountRate: $discountRate price: $price detailImg: $detailImg category_id: $category_id img: $img stock: $stock) {
  1005. result
  1006. product {
  1007. recommend
  1008. updatedAt
  1009. unit
  1010. name
  1011. createdAt
  1012. slideImg
  1013. status
  1014. id
  1015. intro
  1016. discountRate
  1017. price
  1018. detailImg
  1019. img
  1020. stock
  1021. }
  1022. }
  1023. }
  1024. mutation updateuser($email: String, $updatedAt: String, $where: user_filter, $password: String, $telephone: String, $username: String, $createdAt: String, $openid: String, $id: ID, $userData_id: ID) {
  1025. updateuser: update_user(email: $email updatedAt: $updatedAt where: $where password: $password telephone: $telephone username: $username createdAt: $createdAt openid: $openid id: $id userData_id: $userData_id) {
  1026. result
  1027. user {
  1028. email
  1029. updatedAt
  1030. password
  1031. telephone
  1032. username
  1033. createdAt
  1034. openid
  1035. id
  1036. }
  1037. }
  1038. }
  1039. mutation createshop($description: String, $address: String, $updatedAt: String, $telephone: String, $name: String, $createdAt: String, $status: String, $id: ID!, $slideshow: String, $notice: String, $intro: String, $img: String) {
  1040. createshop: create_shop(description: $description address: $address updatedAt: $updatedAt telephone: $telephone name: $name createdAt: $createdAt status: $status id: $id slideshow: $slideshow notice: $notice intro: $intro img: $img) {
  1041. result
  1042. shop {
  1043. description
  1044. address
  1045. updatedAt
  1046. telephone
  1047. name
  1048. createdAt
  1049. status
  1050. id
  1051. slideshow
  1052. notice
  1053. intro
  1054. img
  1055. }
  1056. }
  1057. }
  1058. mutation deleteslideshow($id: ID, $name: String, $img: String, $status: Int, $createdAt: String, $updatedAt: String, $where: slideshow_filter) {
  1059. deleteslideshow: delete_slideshow(id: $id name: $name img: $img status: $status createdAt: $createdAt updatedAt: $updatedAt where: $where)
  1060. }
  1061. mutation updateuserData($updatedAt: String, $where: userData_filter, $userPoint: Int, $nickname: String, $createdAt: String, $id: ID, $avatar: String, $vipCode: String, $isVip: Boolean) {
  1062. updateuserData: update_userData(updatedAt: $updatedAt where: $where userPoint: $userPoint nickname: $nickname createdAt: $createdAt id: $id avatar: $avatar vipCode: $vipCode isVip: $isVip) {
  1063. result
  1064. userData {
  1065. id
  1066. nickname
  1067. avatar
  1068. isVip
  1069. vipCode
  1070. userPoint
  1071. createdAt
  1072. updatedAt
  1073. }
  1074. }
  1075. }
  1076. mutation createuserCollect($id: ID!, $product_id: ID, $user_id: ID, $createdAt: String, $updatedAt: String) {
  1077. createuserCollect: create_userCollect(id: $id product_id: $product_id user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt) {
  1078. result
  1079. userCollect {
  1080. id
  1081. createdAt
  1082. updatedAt
  1083. }
  1084. }
  1085. }
  1086. mutation createuserAddress($address: String, $updatedAt: String, $telephone: String, $default: Int, $city: String, $username: String, $postcode: String, $createdAt: String, $deletedAt: String, $id: ID!, $user_id: ID, $area: String, $province: String) {
  1087. createuserAddress: create_userAddress(address: $address updatedAt: $updatedAt telephone: $telephone
  1088. default: $default city: $city username: $username postcode: $postcode createdAt: $createdAt deletedAt: $deletedAt id: $id user_id: $user_id area: $area province: $province) {
  1089. result
  1090. userAddress {
  1091. address
  1092. updatedAt
  1093. telephone
  1094. default
  1095. city
  1096. username
  1097. postcode
  1098. createdAt
  1099. deletedAt
  1100. id
  1101. area
  1102. province
  1103. }
  1104. }
  1105. }
  1106. mutation deleteuserCart($id: ID, $user_id: ID, $product_id: ID, $specificationStock_id: ID, $count: Int, $createdAt: String, $updatedAt: String, $where: userCart_filter) {
  1107. deleteuserCart: delete_userCart(id: $id user_id: $user_id product_id: $product_id specificationStock_id: $specificationStock_id count: $count createdAt: $createdAt updatedAt: $updatedAt where: $where)
  1108. }
  1109. mutation updateuserAddress($address: String, $updatedAt: String, $where: userAddress_filter, $telephone: String, $default: Int, $city: String, $username: String, $postcode: String, $createdAt: String, $deletedAt: String, $id: ID, $user_id: ID, $area: String, $province: String) {
  1110. updateuserAddress: update_userAddress(address: $address updatedAt: $updatedAt where: $where telephone: $telephone
  1111. default: $default city: $city username: $username postcode: $postcode createdAt: $createdAt deletedAt: $deletedAt id: $id user_id: $user_id area: $area province: $province) {
  1112. result
  1113. userAddress {
  1114. address
  1115. updatedAt
  1116. telephone
  1117. default
  1118. city
  1119. username
  1120. postcode
  1121. createdAt
  1122. deletedAt
  1123. id
  1124. area
  1125. province
  1126. }
  1127. }
  1128. }
  1129. mutation updatecategory($id: ID, $name: String, $img: String, $order: Int, $status: String, $createdAt: String, $updatedAt: String, $where: category_filter) {
  1130. updatecategory: update_category(id: $id name: $name img: $img order: $order status: $status createdAt: $createdAt updatedAt: $updatedAt where: $where) {
  1131. result
  1132. category {
  1133. id
  1134. name
  1135. img
  1136. order
  1137. status
  1138. createdAt
  1139. updatedAt
  1140. }
  1141. }
  1142. }
  1143. mutation createslideshow($id: ID!, $name: String, $img: String, $status: Int, $createdAt: String, $updatedAt: String) {
  1144. createslideshow: create_slideshow(id: $id name: $name img: $img status: $status createdAt: $createdAt updatedAt: $updatedAt) {
  1145. result
  1146. slideshow {
  1147. id
  1148. name
  1149. img
  1150. status
  1151. createdAt
  1152. updatedAt
  1153. }
  1154. }
  1155. }
  1156. mutation updateadmin($email: String, $updatedAt: String, $where: admin_filter, $password: String, $telephone: String, $username: String, $createdAt: String, $openid: String, $id: ID) {
  1157. updateadmin: update_admin(email: $email updatedAt: $updatedAt where: $where password: $password telephone: $telephone username: $username createdAt: $createdAt openid: $openid id: $id) {
  1158. result
  1159. admin {
  1160. id
  1161. openid
  1162. username
  1163. password
  1164. telephone
  1165. email
  1166. createdAt
  1167. updatedAt
  1168. }
  1169. }
  1170. }
  1171. mutation deletespecificationStock($updatedAt: String, $where: specificationStock_filter, $color: String, $product_id: ID, $createdAt: String, $size: String, $status: String, $id: ID, $stock: Int) {
  1172. deletespecificationStock: delete_specificationStock(updatedAt: $updatedAt where: $where color: $color product_id: $product_id createdAt: $createdAt size: $size status: $status id: $id stock: $stock)
  1173. }
  1174. mutation createuserSearch($id: ID!, $keyword: Int, $user_id: ID, $createdAt: String, $updatedAt: String) {
  1175. createuserSearch: create_userSearch(id: $id keyword: $keyword user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt) {
  1176. result
  1177. userSearch {
  1178. id
  1179. keyword
  1180. createdAt
  1181. updatedAt
  1182. }
  1183. }
  1184. }
  1185. mutation createproduct($recommend: Int, $updatedAt: String, $unit: String, $name: String, $createdAt: String, $slideImg: String, $status: String, $id: ID!, $intro: String, $discountRate: Float, $price: Float, $detailImg: String, $category_id: ID, $img: String, $stock: Int) {
  1186. createproduct: create_product(recommend: $recommend updatedAt: $updatedAt unit: $unit name: $name createdAt: $createdAt slideImg: $slideImg status: $status id: $id intro: $intro discountRate: $discountRate price: $price detailImg: $detailImg category_id: $category_id img: $img stock: $stock) {
  1187. result
  1188. product {
  1189. recommend
  1190. updatedAt
  1191. unit
  1192. name
  1193. createdAt
  1194. slideImg
  1195. status
  1196. id
  1197. intro
  1198. discountRate
  1199. price
  1200. detailImg
  1201. img
  1202. stock
  1203. }
  1204. }
  1205. }
  1206. mutation deleteuserData($updatedAt: String, $where: userData_filter, $userPoint: Int, $nickname: String, $createdAt: String, $id: ID, $avatar: String, $vipCode: String, $isVip: Boolean) {
  1207. deleteuserData: delete_userData(updatedAt: $updatedAt where: $where userPoint: $userPoint nickname: $nickname createdAt: $createdAt id: $id avatar: $avatar vipCode: $vipCode isVip: $isVip)
  1208. }
  1209. mutation createspecificationStock($updatedAt: String, $color: String, $product_id: ID, $createdAt: String, $size: String, $slideImg: String, $status: String, $id: ID!, $detailImg: String, $stock: Int) {
  1210. createspecificationStock: create_specificationStock(updatedAt: $updatedAt color: $color product_id: $product_id createdAt: $createdAt size: $size slideImg: $slideImg status: $status id: $id detailImg: $detailImg stock: $stock) {
  1211. result
  1212. specificationStock {
  1213. updatedAt
  1214. color
  1215. createdAt
  1216. size
  1217. slideImg
  1218. status
  1219. id
  1220. detailImg
  1221. stock
  1222. }
  1223. }
  1224. }
  1225. mutation deleteshop($description: String, $address: String, $updatedAt: String, $where: shop_filter, $telephone: String, $name: String, $createdAt: String, $status: String, $id: ID, $notice: String, $intro: String) {
  1226. deleteshop: delete_shop(description: $description address: $address updatedAt: $updatedAt where: $where telephone: $telephone name: $name createdAt: $createdAt status: $status id: $id notice: $notice intro: $intro)
  1227. }
  1228. mutation deleteorderProduct($updatedAt: String, $where: orderProduct_filter, $productColor: String, $unit: String, $product_id: ID, $productSize: String, $orderPay: Float, $createdAt: String, $productImg: String, $productName: String, $specificationStock_id: ID, $order_id: ID, $productPrice: Float, $id: ID, $count: Int, $productPay: Float, $user_id: ID, $orderPay_id: ID) {
  1229. deleteorderProduct: delete_orderProduct(updatedAt: $updatedAt where: $where productColor: $productColor unit: $unit product_id: $product_id productSize: $productSize orderPay: $orderPay createdAt: $createdAt productImg: $productImg productName: $productName specificationStock_id: $specificationStock_id order_id: $order_id productPrice: $productPrice id: $id count: $count productPay: $productPay user_id: $user_id orderPay_id: $orderPay_id)
  1230. }
  1231. mutation deleteuserCollect($id: ID, $user_id: ID, $createdAt: String, $updatedAt: String, $where: userCollect_filter) {
  1232. deleteuserCollect: delete_userCollect(id: $id user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt where: $where)
  1233. }
  1234. mutation updateuserCollect($id: ID, $product_id: ID, $user_id: ID, $createdAt: String, $updatedAt: String, $where: userCollect_filter) {
  1235. updateuserCollect: update_userCollect(id: $id product_id: $product_id user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt where: $where) {
  1236. result
  1237. userCollect {
  1238. id
  1239. createdAt
  1240. updatedAt
  1241. }
  1242. }
  1243. }
  1244. mutation deleteorder($remark: String, $updatedAt: String, $where: order_filter, $orderLogistics_id: ID, $orderTotalPay: Float, $createdAt: String, $orderStatus: String, $id: ID, $count: Int, $user_id: ID, $productTotalPay: Float, $orderPay_id: ID) {
  1245. deleteorder: delete_order(remark: $remark updatedAt: $updatedAt where: $where orderLogistics_id: $orderLogistics_id orderTotalPay: $orderTotalPay createdAt: $createdAt orderStatus: $orderStatus id: $id count: $count user_id: $user_id productTotalPay: $productTotalPay orderPay_id: $orderPay_id)
  1246. }
  1247. mutation deleteadmin($email: String, $updatedAt: String, $where: admin_filter, $password: String, $telephone: String, $username: String, $createdAt: String, $openid: String, $id: ID) {
  1248. deleteadmin: delete_admin(email: $email updatedAt: $updatedAt where: $where password: $password telephone: $telephone username: $username createdAt: $createdAt openid: $openid id: $id)
  1249. }
  1250. mutation updatespecificationStock($updatedAt: String, $where: specificationStock_filter, $color: String, $product_id: ID, $createdAt: String, $size: String, $slideImg: String, $status: String, $id: ID, $detailImg: String, $stock: Int) {
  1251. updatespecificationStock: update_specificationStock(updatedAt: $updatedAt where: $where color: $color product_id: $product_id createdAt: $createdAt size: $size slideImg: $slideImg status: $status id: $id detailImg: $detailImg stock: $stock) {
  1252. result
  1253. specificationStock {
  1254. updatedAt
  1255. color
  1256. createdAt
  1257. size
  1258. slideImg
  1259. status
  1260. id
  1261. detailImg
  1262. stock
  1263. }
  1264. }
  1265. }
  1266. mutation deleteuserAddress($address: String, $updatedAt: String, $where: userAddress_filter, $telephone: String, $default: Int, $city: String, $username: String, $postcode: String, $createdAt: String, $deletedAt: String, $id: ID, $user_id: ID, $area: String, $province: String) {
  1267. deleteuserAddress: delete_userAddress(address: $address updatedAt: $updatedAt where: $where telephone: $telephone
  1268. default: $default city: $city username: $username postcode: $postcode createdAt: $createdAt deletedAt: $deletedAt id: $id user_id: $user_id area: $area province: $province)
  1269. }
  1270. mutation updateuserCart($id: ID, $user_id: ID, $product_id: ID, $specificationStock_id: ID, $count: Int, $createdAt: String, $updatedAt: String, $where: userCart_filter) {
  1271. updateuserCart: update_userCart(id: $id user_id: $user_id product_id: $product_id specificationStock_id: $specificationStock_id count: $count createdAt: $createdAt updatedAt: $updatedAt where: $where) {
  1272. result
  1273. userCart {
  1274. id
  1275. count
  1276. createdAt
  1277. updatedAt
  1278. }
  1279. }
  1280. }
  1281. mutation deleteuser($email: String, $updatedAt: String, $where: user_filter, $password: String, $telephone: String, $username: String, $createdAt: String, $openid: String, $id: ID, $userData_id: ID) {
  1282. deleteuser: delete_user(email: $email updatedAt: $updatedAt where: $where password: $password telephone: $telephone username: $username createdAt: $createdAt openid: $openid id: $id userData_id: $userData_id)
  1283. }
  1284. mutation createuserCart($id: ID!, $user_id: ID, $product_id: ID, $specificationStock_id: ID, $count: Int, $createdAt: String, $updatedAt: String) {
  1285. createuserCart: create_userCart(id: $id user_id: $user_id product_id: $product_id specificationStock_id: $specificationStock_id count: $count createdAt: $createdAt updatedAt: $updatedAt) {
  1286. result
  1287. userCart {
  1288. id
  1289. count
  1290. createdAt
  1291. updatedAt
  1292. }
  1293. }
  1294. }
  1295. mutation createuserData($id: ID!, $nickname: String, $avatar: String, $isVip: Boolean, $vipCode: String, $userPoint: Int, $createdAt: String, $updatedAt: String) {
  1296. createuserData: create_userData(id: $id nickname: $nickname avatar: $avatar isVip: $isVip vipCode: $vipCode userPoint: $userPoint createdAt: $createdAt updatedAt: $updatedAt) {
  1297. result
  1298. userData {
  1299. id
  1300. nickname
  1301. avatar
  1302. isVip
  1303. vipCode
  1304. userPoint
  1305. createdAt
  1306. updatedAt
  1307. }
  1308. }
  1309. }
  1310. mutation createorder($remark: String, $updatedAt: String, $orderLogistics_id: ID, $orderTotalPay: Float, $createdAt: String, $orderStatus: String, $id: ID!, $count: Int, $user_id: ID, $productTotalPay: Float, $orderPay_id: ID) {
  1311. createorder: create_order(remark: $remark updatedAt: $updatedAt orderLogistics_id: $orderLogistics_id orderTotalPay: $orderTotalPay createdAt: $createdAt orderStatus: $orderStatus id: $id count: $count user_id: $user_id productTotalPay: $productTotalPay orderPay_id: $orderPay_id) {
  1312. result
  1313. order {
  1314. remark
  1315. updatedAt
  1316. orderTotalPay
  1317. createdAt
  1318. orderStatus
  1319. id
  1320. count
  1321. productTotalPay
  1322. }
  1323. }
  1324. }
  1325. mutation deleteuserSearch($id: ID, $user_id: ID, $createdAt: String, $updatedAt: String, $where: userSearch_filter) {
  1326. deleteuserSearch: delete_userSearch(id: $id user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt where: $where)
  1327. }
  1328. mutation deleteorderPay($updatedAt: String, $where: orderPay_filter, $tradeNo: String, $transactionId: String, $time: String, $createdAt: String, $openid: String, $id: ID, $totalFee: Float, $user_id: ID, $cashFee: Float) {
  1329. deleteorderPay: delete_orderPay(updatedAt: $updatedAt where: $where tradeNo: $tradeNo transactionId: $transactionId time: $time createdAt: $createdAt openid: $openid id: $id totalFee: $totalFee user_id: $user_id cashFee: $cashFee)
  1330. }
  1331. mutation updateorderPay($updatedAt: String, $where: orderPay_filter, $tradeNo: String, $transactionId: String, $time: String, $createdAt: String, $openid: String, $id: ID, $totalFee: Float, $user_id: ID, $cashFee: Float) {
  1332. updateorderPay: update_orderPay(updatedAt: $updatedAt where: $where tradeNo: $tradeNo transactionId: $transactionId time: $time createdAt: $createdAt openid: $openid id: $id totalFee: $totalFee user_id: $user_id cashFee: $cashFee) {
  1333. result
  1334. orderPay {
  1335. updatedAt
  1336. tradeNo
  1337. transactionId
  1338. time
  1339. createdAt
  1340. openid
  1341. id
  1342. totalFee
  1343. cashFee
  1344. }
  1345. }
  1346. }
  1347. mutation deleteorderLogistics($deliveryTime: String, $serviceStore: String, $updatedAt: String, $where: orderLogistics_filter, $logisticsFee: Float, $expressDetailName: String, $expressId: String, $createdAt: String, $order_id: ID, $consigneeTel: String, $id: ID, $expressName: String, $consignAddress: String, $LogisticsStatus: String, $user_id: ID, $consigneeName: String) {
  1348. deleteorderLogistics: delete_orderLogistics(deliveryTime: $deliveryTime serviceStore: $serviceStore updatedAt: $updatedAt where: $where logisticsFee: $logisticsFee expressDetailName: $expressDetailName expressId: $expressId createdAt: $createdAt order_id: $order_id consigneeTel: $consigneeTel id: $id expressName: $expressName consignAddress: $consignAddress LogisticsStatus: $LogisticsStatus user_id: $user_id consigneeName: $consigneeName)
  1349. }
  1350. mutation updateuserSearch($id: ID, $keyword: Int, $user_id: ID, $createdAt: String, $updatedAt: String, $where: userSearch_filter) {
  1351. updateuserSearch: update_userSearch(id: $id keyword: $keyword user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt where: $where) {
  1352. result
  1353. userSearch {
  1354. id
  1355. keyword
  1356. createdAt
  1357. updatedAt
  1358. }
  1359. }
  1360. }
  1361. mutation updateorder($remark: String, $updatedAt: String, $where: order_filter, $orderLogistics_id: ID, $orderTotalPay: Float, $createdAt: String, $orderStatus: String, $id: ID, $count: Int, $user_id: ID, $productTotalPay: Float, $orderPay_id: ID) {
  1362. updateorder: update_order(remark: $remark updatedAt: $updatedAt where: $where orderLogistics_id: $orderLogistics_id orderTotalPay: $orderTotalPay createdAt: $createdAt orderStatus: $orderStatus id: $id count: $count user_id: $user_id productTotalPay: $productTotalPay orderPay_id: $orderPay_id) {
  1363. result
  1364. order {
  1365. remark
  1366. updatedAt
  1367. orderTotalPay
  1368. createdAt
  1369. orderStatus
  1370. id
  1371. count
  1372. productTotalPay
  1373. }
  1374. }
  1375. }
  1376. mutation createorderLogistics($deliveryTime: String, $serviceStore: String, $updatedAt: String, $logisticsFee: Float, $expressDetailName: String, $expressId: String, $createdAt: String, $order_id: ID, $consigneeTel: String, $id: ID!, $expressName: String, $consignAddress: String, $LogisticsStatus: String, $user_id: ID, $consigneeName: String) {
  1377. createorderLogistics: create_orderLogistics(deliveryTime: $deliveryTime serviceStore: $serviceStore updatedAt: $updatedAt logisticsFee: $logisticsFee expressDetailName: $expressDetailName expressId: $expressId createdAt: $createdAt order_id: $order_id consigneeTel: $consigneeTel id: $id expressName: $expressName consignAddress: $consignAddress LogisticsStatus: $LogisticsStatus user_id: $user_id consigneeName: $consigneeName) {
  1378. result
  1379. orderLogistics {
  1380. deliveryTime
  1381. serviceStore
  1382. updatedAt
  1383. logisticsFee
  1384. expressDetailName
  1385. expressId
  1386. createdAt
  1387. consigneeTel
  1388. id
  1389. expressName
  1390. consignAddress
  1391. LogisticsStatus
  1392. consigneeName
  1393. }
  1394. }
  1395. }
  1396. mutation updateorderLogistics($deliveryTime: String, $serviceStore: String, $updatedAt: String, $where: orderLogistics_filter, $logisticsFee: Float, $expressDetailName: String, $expressId: String, $createdAt: String, $order_id: ID, $consigneeTel: String, $id: ID, $expressName: String, $consignAddress: String, $LogisticsStatus: String, $user_id: ID, $consigneeName: String) {
  1397. updateorderLogistics: update_orderLogistics(deliveryTime: $deliveryTime serviceStore: $serviceStore updatedAt: $updatedAt where: $where logisticsFee: $logisticsFee expressDetailName: $expressDetailName expressId: $expressId createdAt: $createdAt order_id: $order_id consigneeTel: $consigneeTel id: $id expressName: $expressName consignAddress: $consignAddress LogisticsStatus: $LogisticsStatus user_id: $user_id consigneeName: $consigneeName) {
  1398. result
  1399. orderLogistics {
  1400. deliveryTime
  1401. serviceStore
  1402. updatedAt
  1403. logisticsFee
  1404. expressDetailName
  1405. expressId
  1406. createdAt
  1407. consigneeTel
  1408. id
  1409. expressName
  1410. consignAddress
  1411. LogisticsStatus
  1412. consigneeName
  1413. }
  1414. }
  1415. }
  1416. mutation createorderProduct($updatedAt: String, $productColor: String, $unit: String, $product_id: ID, $productSize: String, $orderPay: Float, $createdAt: String, $productImg: String, $productName: String, $specificationStock_id: ID, $order_id: ID, $productPrice: Float, $id: ID!, $count: Int, $productPay: Float, $user_id: ID, $orderPay_id: ID) {
  1417. createorderProduct: create_orderProduct(updatedAt: $updatedAt productColor: $productColor unit: $unit product_id: $product_id productSize: $productSize orderPay: $orderPay createdAt: $createdAt productImg: $productImg productName: $productName specificationStock_id: $specificationStock_id order_id: $order_id productPrice: $productPrice id: $id count: $count productPay: $productPay user_id: $user_id orderPay_id: $orderPay_id) {
  1418. result
  1419. orderProduct {
  1420. updatedAt
  1421. productColor
  1422. unit
  1423. productSize
  1424. orderPay
  1425. createdAt
  1426. productImg
  1427. productName
  1428. productPrice
  1429. id
  1430. count
  1431. productPay
  1432. }
  1433. }
  1434. }
  1435. mutation deleteproduct($recommend: Int, $updatedAt: String, $where: product_filter, $unit: String, $name: String, $createdAt: String, $status: String, $id: ID, $intro: String, $discountRate: Float, $price: Float, $category_id: ID, $img: String, $stock: Int) {
  1436. deleteproduct: delete_product(recommend: $recommend updatedAt: $updatedAt where: $where unit: $unit name: $name createdAt: $createdAt status: $status id: $id intro: $intro discountRate: $discountRate price: $price category_id: $category_id img: $img stock: $stock)
  1437. }
  1438. mutation createcategory($id: ID!, $name: String, $img: String, $order: Int, $status: String, $createdAt: String, $updatedAt: String) {
  1439. createcategory: create_category(id: $id name: $name img: $img order: $order status: $status createdAt: $createdAt updatedAt: $updatedAt) {
  1440. result
  1441. category {
  1442. id
  1443. name
  1444. img
  1445. order
  1446. status
  1447. createdAt
  1448. updatedAt
  1449. }
  1450. }
  1451. }
  1452. mutation updateorderProduct($updatedAt: String, $where: orderProduct_filter, $productColor: String, $unit: String, $product_id: ID, $productSize: String, $orderPay: Float, $createdAt: String, $productImg: String, $productName: String, $specificationStock_id: ID, $order_id: ID, $productPrice: Float, $id: ID, $count: Int, $productPay: Float, $user_id: ID, $orderPay_id: ID) {
  1453. updateorderProduct: update_orderProduct(updatedAt: $updatedAt where: $where productColor: $productColor unit: $unit product_id: $product_id productSize: $productSize orderPay: $orderPay createdAt: $createdAt productImg: $productImg productName: $productName specificationStock_id: $specificationStock_id order_id: $order_id productPrice: $productPrice id: $id count: $count productPay: $productPay user_id: $user_id orderPay_id: $orderPay_id) {
  1454. result
  1455. orderProduct {
  1456. updatedAt
  1457. productColor
  1458. unit
  1459. productSize
  1460. orderPay
  1461. createdAt
  1462. productImg
  1463. productName
  1464. productPrice
  1465. id
  1466. count
  1467. productPay
  1468. }
  1469. }
  1470. }
  1471. mutation createadmin($id: ID!, $openid: String, $username: String, $password: String, $telephone: String, $email: String, $createdAt: String, $updatedAt: String) {
  1472. createadmin: create_admin(id: $id openid: $openid username: $username password: $password telephone: $telephone email: $email createdAt: $createdAt updatedAt: $updatedAt) {
  1473. result
  1474. admin {
  1475. id
  1476. openid
  1477. username
  1478. password
  1479. telephone
  1480. email
  1481. createdAt
  1482. updatedAt
  1483. }
  1484. }
  1485. }