ec.txt 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959
  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 adminbyid($id: ID) {
  24. adminbyid: admin_by_id(id: $id) {
  25. id
  26. openid
  27. username
  28. password
  29. telephone
  30. email
  31. createdAt
  32. updatedAt
  33. }
  34. }
  35. query specificationStockbyid($id: ID) {
  36. specificationStockbyid: specificationStock_by_id(id: $id) {
  37. id
  38. product_id {
  39. recommend
  40. updatedAt
  41. unit
  42. name
  43. createdAt
  44. status
  45. id
  46. intro
  47. price
  48. img
  49. stock
  50. }
  51. color
  52. size
  53. stock
  54. status
  55. createdAt
  56. updatedAt
  57. }
  58. }
  59. query categorybyprops($name: String, $img: String, $order: Int, $status: String, $createdAt: String, $updatedAt: String) {
  60. categorybyprops: category_by_props(name: $name img: $img order: $order status: $status createdAt: $createdAt updatedAt: $updatedAt) {
  61. id
  62. name
  63. img
  64. order
  65. status
  66. createdAt
  67. updatedAt
  68. }
  69. }
  70. query orderPaybyprops($user_id: ID, $order_id: ID, $totalPay: Float, $transactionId: String, $payTime: String) {
  71. orderPaybyprops: orderPay_by_props(user_id: $user_id order_id: $order_id totalPay: $totalPay transactionId: $transactionId payTime: $payTime) {
  72. id
  73. user_id {
  74. email
  75. updatedAt
  76. password
  77. telephone
  78. username
  79. createdAt
  80. openid
  81. id
  82. }
  83. order_id {
  84. deliveryTime
  85. remark
  86. updatedAt
  87. payTime
  88. orderTotalPay
  89. createdAt
  90. orderStatus
  91. id
  92. orderShipFee
  93. count
  94. productTotalPay
  95. }
  96. totalPay
  97. transactionId
  98. payTime
  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. status
  121. id
  122. intro
  123. price
  124. img
  125. stock
  126. }
  127. specificationStock_id {
  128. id
  129. color
  130. size
  131. stock
  132. status
  133. createdAt
  134. updatedAt
  135. }
  136. count
  137. createdAt
  138. updatedAt
  139. }
  140. }
  141. query userDatabyid($id: ID) {
  142. userDatabyid: userData_by_id(id: $id) {
  143. id
  144. nickname
  145. avatar
  146. isVip
  147. vipCode
  148. userPoint
  149. createdAt
  150. updatedAt
  151. }
  152. }
  153. query adminbyprops($openid: String, $username: String, $password: String, $telephone: String, $email: String, $createdAt: String, $updatedAt: String) {
  154. adminbyprops: admin_by_props(openid: $openid username: $username password: $password telephone: $telephone email: $email createdAt: $createdAt updatedAt: $updatedAt) {
  155. id
  156. openid
  157. username
  158. password
  159. telephone
  160. email
  161. createdAt
  162. updatedAt
  163. }
  164. }
  165. query userSearchbyprops($user_id: ID, $createdAt: String, $updatedAt: String) {
  166. userSearchbyprops: userSearch_by_props(user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt) {
  167. id
  168. user_id {
  169. email
  170. updatedAt
  171. password
  172. telephone
  173. username
  174. createdAt
  175. openid
  176. id
  177. }
  178. keyword
  179. createdAt
  180. updatedAt
  181. }
  182. }
  183. query userCollectbyprops($user_id: ID, $createdAt: String, $updatedAt: String) {
  184. userCollectbyprops: userCollect_by_props(user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt) {
  185. id
  186. user_id {
  187. email
  188. updatedAt
  189. password
  190. telephone
  191. username
  192. createdAt
  193. openid
  194. id
  195. }
  196. product_id {
  197. recommend
  198. updatedAt
  199. unit
  200. name
  201. createdAt
  202. status
  203. id
  204. intro
  205. price
  206. img
  207. stock
  208. }
  209. createdAt
  210. updatedAt
  211. }
  212. }
  213. query productbyprops($recommend: Int, $updatedAt: String, $unit: String, $name: String, $createdAt: String, $status: String, $intro: String, $price: Float, $category_id: ID, $img: String, $stock: Int) {
  214. productbyprops: product_by_props(recommend: $recommend updatedAt: $updatedAt unit: $unit name: $name createdAt: $createdAt status: $status intro: $intro price: $price category_id: $category_id img: $img stock: $stock) {
  215. recommend
  216. updatedAt
  217. unit
  218. name
  219. createdAt
  220. status
  221. id
  222. intro
  223. price
  224. category_id {
  225. id
  226. name
  227. img
  228. order
  229. status
  230. createdAt
  231. updatedAt
  232. }
  233. img
  234. stock
  235. }
  236. }
  237. query orderLogisticsbyid($id: ID) {
  238. orderLogisticsbyid: orderLogistics_by_id(id: $id) {
  239. updatedAt
  240. logisticsFee
  241. expressId
  242. createdAt
  243. order_id {
  244. deliveryTime
  245. remark
  246. updatedAt
  247. payTime
  248. orderTotalPay
  249. createdAt
  250. orderStatus
  251. id
  252. orderShipFee
  253. count
  254. productTotalPay
  255. }
  256. consigneeTel
  257. id
  258. consignAddress
  259. LogisticsStatus
  260. user_id {
  261. email
  262. updatedAt
  263. password
  264. telephone
  265. username
  266. createdAt
  267. openid
  268. id
  269. }
  270. consigneeName
  271. }
  272. }
  273. query specificationStockbyprops($product_id: ID, $color: String, $size: String, $stock: Int, $status: String, $createdAt: String, $updatedAt: String) {
  274. specificationStockbyprops: specificationStock_by_props(product_id: $product_id color: $color size: $size stock: $stock status: $status createdAt: $createdAt updatedAt: $updatedAt) {
  275. id
  276. product_id {
  277. recommend
  278. updatedAt
  279. unit
  280. name
  281. createdAt
  282. status
  283. id
  284. intro
  285. price
  286. img
  287. stock
  288. }
  289. color
  290. size
  291. stock
  292. status
  293. createdAt
  294. updatedAt
  295. }
  296. }
  297. query orderProductbyid($id: ID) {
  298. orderProductbyid: orderProduct_by_id(id: $id) {
  299. updatedAt
  300. productColor
  301. unit
  302. product_id {
  303. recommend
  304. updatedAt
  305. unit
  306. name
  307. createdAt
  308. status
  309. id
  310. intro
  311. price
  312. img
  313. stock
  314. }
  315. productSize
  316. orderPay
  317. createdAt
  318. productImg
  319. productName
  320. specificationStock_id {
  321. id
  322. color
  323. size
  324. stock
  325. status
  326. createdAt
  327. updatedAt
  328. }
  329. order_id {
  330. deliveryTime
  331. remark
  332. updatedAt
  333. payTime
  334. orderTotalPay
  335. createdAt
  336. orderStatus
  337. id
  338. orderShipFee
  339. count
  340. productTotalPay
  341. }
  342. productPrice
  343. id
  344. count
  345. productPay
  346. user_id {
  347. email
  348. updatedAt
  349. password
  350. telephone
  351. username
  352. createdAt
  353. openid
  354. id
  355. }
  356. orderPay_id {
  357. id
  358. totalPay
  359. transactionId
  360. payTime
  361. }
  362. }
  363. }
  364. query userCollectbyid($id: ID) {
  365. userCollectbyid: userCollect_by_id(id: $id) {
  366. id
  367. user_id {
  368. email
  369. updatedAt
  370. password
  371. telephone
  372. username
  373. createdAt
  374. openid
  375. id
  376. }
  377. product_id {
  378. recommend
  379. updatedAt
  380. unit
  381. name
  382. createdAt
  383. status
  384. id
  385. intro
  386. price
  387. img
  388. stock
  389. }
  390. createdAt
  391. updatedAt
  392. }
  393. }
  394. query userAddressbyprops($address: String, $updatedAt: String, $telephone: String, $default: Int, $city: String, $username: String, $postcode: String, $createdAt: String, $deletedAt: String, $user_id: ID, $area: String, $province: String) {
  395. userAddressbyprops: userAddress_by_props(address: $address updatedAt: $updatedAt telephone: $telephone
  396. default: $default city: $city username: $username postcode: $postcode createdAt: $createdAt deletedAt: $deletedAt user_id: $user_id area: $area province: $province) {
  397. address
  398. updatedAt
  399. telephone
  400. default
  401. city
  402. username
  403. postcode
  404. createdAt
  405. deletedAt
  406. id
  407. user_id {
  408. email
  409. updatedAt
  410. password
  411. telephone
  412. username
  413. createdAt
  414. openid
  415. id
  416. }
  417. area
  418. province
  419. }
  420. }
  421. query orderPaybyid($id: ID) {
  422. orderPaybyid: orderPay_by_id(id: $id) {
  423. id
  424. user_id {
  425. email
  426. updatedAt
  427. password
  428. telephone
  429. username
  430. createdAt
  431. openid
  432. id
  433. }
  434. order_id {
  435. deliveryTime
  436. remark
  437. updatedAt
  438. payTime
  439. orderTotalPay
  440. createdAt
  441. orderStatus
  442. id
  443. orderShipFee
  444. count
  445. productTotalPay
  446. }
  447. totalPay
  448. transactionId
  449. payTime
  450. }
  451. }
  452. query userAddressbyid($id: ID) {
  453. userAddressbyid: userAddress_by_id(id: $id) {
  454. address
  455. updatedAt
  456. telephone
  457. default
  458. city
  459. username
  460. postcode
  461. createdAt
  462. deletedAt
  463. id
  464. user_id {
  465. email
  466. updatedAt
  467. password
  468. telephone
  469. username
  470. createdAt
  471. openid
  472. id
  473. }
  474. area
  475. province
  476. }
  477. }
  478. query slideshowbyid($id: ID) {
  479. slideshowbyid: slideshow_by_id(id: $id) {
  480. id
  481. name
  482. img
  483. status
  484. createdAt
  485. updatedAt
  486. }
  487. }
  488. query orderLogisticsbyprops($updatedAt: String, $logisticsFee: Float, $expressId: String, $createdAt: String, $order_id: ID, $consigneeTel: String, $consignAddress: String, $LogisticsStatus: String, $user_id: ID, $consigneeName: String) {
  489. orderLogisticsbyprops: orderLogistics_by_props(updatedAt: $updatedAt logisticsFee: $logisticsFee expressId: $expressId createdAt: $createdAt order_id: $order_id consigneeTel: $consigneeTel consignAddress: $consignAddress LogisticsStatus: $LogisticsStatus user_id: $user_id consigneeName: $consigneeName) {
  490. updatedAt
  491. logisticsFee
  492. expressId
  493. createdAt
  494. order_id {
  495. deliveryTime
  496. remark
  497. updatedAt
  498. payTime
  499. orderTotalPay
  500. createdAt
  501. orderStatus
  502. id
  503. orderShipFee
  504. count
  505. productTotalPay
  506. }
  507. consigneeTel
  508. id
  509. consignAddress
  510. LogisticsStatus
  511. user_id {
  512. email
  513. updatedAt
  514. password
  515. telephone
  516. username
  517. createdAt
  518. openid
  519. id
  520. }
  521. consigneeName
  522. }
  523. }
  524. query shopbyprops($description: String, $address: String, $updatedAt: String, $telephone: String, $name: String, $createdAt: String, $status: String, $notice: String, $intro: String) {
  525. shopbyprops: shop_by_props(description: $description address: $address updatedAt: $updatedAt telephone: $telephone name: $name createdAt: $createdAt status: $status notice: $notice intro: $intro) {
  526. description
  527. address
  528. updatedAt
  529. telephone
  530. name
  531. createdAt
  532. status
  533. id
  534. slideshow
  535. notice
  536. intro
  537. img
  538. }
  539. }
  540. query orderbyid($id: ID) {
  541. orderbyid: order_by_id(id: $id) {
  542. deliveryTime
  543. remark
  544. updatedAt
  545. orderLogistics_id {
  546. updatedAt
  547. logisticsFee
  548. expressId
  549. createdAt
  550. consigneeTel
  551. id
  552. consignAddress
  553. LogisticsStatus
  554. consigneeName
  555. }
  556. payTime
  557. orderTotalPay
  558. createdAt
  559. orderStatus
  560. userAddress_id {
  561. address
  562. updatedAt
  563. telephone
  564. default
  565. city
  566. username
  567. postcode
  568. createdAt
  569. deletedAt
  570. id
  571. area
  572. province
  573. }
  574. id
  575. orderShipFee
  576. count
  577. user_id {
  578. email
  579. updatedAt
  580. password
  581. telephone
  582. username
  583. createdAt
  584. openid
  585. id
  586. }
  587. productTotalPay
  588. orderPay_id {
  589. id
  590. totalPay
  591. transactionId
  592. payTime
  593. }
  594. }
  595. }
  596. query orderProductbyprops($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, $count: Int, $productPay: Float, $user_id: ID, $orderPay_id: ID) {
  597. orderProductbyprops: orderProduct_by_props(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 count: $count productPay: $productPay user_id: $user_id orderPay_id: $orderPay_id) {
  598. updatedAt
  599. productColor
  600. unit
  601. product_id {
  602. recommend
  603. updatedAt
  604. unit
  605. name
  606. createdAt
  607. status
  608. id
  609. intro
  610. price
  611. img
  612. stock
  613. }
  614. productSize
  615. orderPay
  616. createdAt
  617. productImg
  618. productName
  619. specificationStock_id {
  620. id
  621. color
  622. size
  623. stock
  624. status
  625. createdAt
  626. updatedAt
  627. }
  628. order_id {
  629. deliveryTime
  630. remark
  631. updatedAt
  632. payTime
  633. orderTotalPay
  634. createdAt
  635. orderStatus
  636. id
  637. orderShipFee
  638. count
  639. productTotalPay
  640. }
  641. productPrice
  642. id
  643. count
  644. productPay
  645. user_id {
  646. email
  647. updatedAt
  648. password
  649. telephone
  650. username
  651. createdAt
  652. openid
  653. id
  654. }
  655. orderPay_id {
  656. id
  657. totalPay
  658. transactionId
  659. payTime
  660. }
  661. }
  662. }
  663. query productbyid($id: ID) {
  664. productbyid: product_by_id(id: $id) {
  665. recommend
  666. updatedAt
  667. unit
  668. name
  669. createdAt
  670. status
  671. id
  672. intro
  673. price
  674. category_id {
  675. id
  676. name
  677. img
  678. order
  679. status
  680. createdAt
  681. updatedAt
  682. }
  683. img
  684. stock
  685. }
  686. }
  687. query userSearchbyid($id: ID) {
  688. userSearchbyid: userSearch_by_id(id: $id) {
  689. id
  690. user_id {
  691. email
  692. updatedAt
  693. password
  694. telephone
  695. username
  696. createdAt
  697. openid
  698. id
  699. }
  700. keyword
  701. createdAt
  702. updatedAt
  703. }
  704. }
  705. query userDatabyprops($nickname: String, $avatar: String, $isVip: Boolean, $vipCode: String, $userPoint: Int, $createdAt: String, $updatedAt: String) {
  706. userDatabyprops: userData_by_props(nickname: $nickname avatar: $avatar isVip: $isVip vipCode: $vipCode userPoint: $userPoint createdAt: $createdAt updatedAt: $updatedAt) {
  707. id
  708. nickname
  709. avatar
  710. isVip
  711. vipCode
  712. userPoint
  713. createdAt
  714. updatedAt
  715. }
  716. }
  717. query categorybyid($id: ID) {
  718. categorybyid: category_by_id(id: $id) {
  719. id
  720. name
  721. img
  722. order
  723. status
  724. createdAt
  725. updatedAt
  726. }
  727. }
  728. query userCartbyprops($user_id: ID, $product_id: ID, $specificationStock_id: ID, $count: Int, $createdAt: String, $updatedAt: String) {
  729. userCartbyprops: userCart_by_props(user_id: $user_id product_id: $product_id specificationStock_id: $specificationStock_id count: $count createdAt: $createdAt updatedAt: $updatedAt) {
  730. id
  731. user_id {
  732. email
  733. updatedAt
  734. password
  735. telephone
  736. username
  737. createdAt
  738. openid
  739. id
  740. }
  741. product_id {
  742. recommend
  743. updatedAt
  744. unit
  745. name
  746. createdAt
  747. status
  748. id
  749. intro
  750. price
  751. img
  752. stock
  753. }
  754. specificationStock_id {
  755. id
  756. color
  757. size
  758. stock
  759. status
  760. createdAt
  761. updatedAt
  762. }
  763. count
  764. createdAt
  765. updatedAt
  766. }
  767. }
  768. query shopbyid($id: ID) {
  769. shopbyid: shop_by_id(id: $id) {
  770. description
  771. address
  772. updatedAt
  773. telephone
  774. name
  775. createdAt
  776. status
  777. id
  778. slideshow
  779. notice
  780. intro
  781. img
  782. }
  783. }
  784. query userbyprops($openid: String, $username: String, $password: String, $telephone: String, $email: String, $userData_id: ID, $createdAt: String, $updatedAt: String) {
  785. userbyprops: user_by_props(openid: $openid username: $username password: $password telephone: $telephone email: $email userData_id: $userData_id createdAt: $createdAt updatedAt: $updatedAt) {
  786. email
  787. updatedAt
  788. password
  789. telephone
  790. username
  791. createdAt
  792. openid
  793. id
  794. userData_id {
  795. id
  796. nickname
  797. avatar
  798. isVip
  799. vipCode
  800. userPoint
  801. createdAt
  802. updatedAt
  803. }
  804. }
  805. }
  806. query orderbyprops($deliveryTime: String, $remark: String, $updatedAt: String, $orderLogistics_id: ID, $payTime: String, $orderTotalPay: Float, $createdAt: String, $orderStatus: String, $userAddress_id: ID, $orderShipFee: Float, $count: Int, $user_id: ID, $productTotalPay: Float, $orderPay_id: ID) {
  807. orderbyprops: order_by_props(deliveryTime: $deliveryTime remark: $remark updatedAt: $updatedAt orderLogistics_id: $orderLogistics_id payTime: $payTime orderTotalPay: $orderTotalPay createdAt: $createdAt orderStatus: $orderStatus userAddress_id: $userAddress_id orderShipFee: $orderShipFee count: $count user_id: $user_id productTotalPay: $productTotalPay orderPay_id: $orderPay_id) {
  808. deliveryTime
  809. remark
  810. updatedAt
  811. orderLogistics_id {
  812. updatedAt
  813. logisticsFee
  814. expressId
  815. createdAt
  816. consigneeTel
  817. id
  818. consignAddress
  819. LogisticsStatus
  820. consigneeName
  821. }
  822. payTime
  823. orderTotalPay
  824. createdAt
  825. orderStatus
  826. userAddress_id {
  827. address
  828. updatedAt
  829. telephone
  830. default
  831. city
  832. username
  833. postcode
  834. createdAt
  835. deletedAt
  836. id
  837. area
  838. province
  839. }
  840. id
  841. orderShipFee
  842. count
  843. user_id {
  844. email
  845. updatedAt
  846. password
  847. telephone
  848. username
  849. createdAt
  850. openid
  851. id
  852. }
  853. productTotalPay
  854. orderPay_id {
  855. id
  856. totalPay
  857. transactionId
  858. payTime
  859. }
  860. }
  861. }
  862. query slideshowbyprops($name: String, $img: String, $status: Int, $createdAt: String, $updatedAt: String) {
  863. slideshowbyprops: slideshow_by_props(name: $name img: $img status: $status createdAt: $createdAt updatedAt: $updatedAt) {
  864. id
  865. name
  866. img
  867. status
  868. createdAt
  869. updatedAt
  870. }
  871. }
  872. mutation createorderPay($id: ID!, $user_id: ID, $order_id: ID, $totalPay: Float, $transactionId: String, $payTime: String) {
  873. createorderPay: create_orderPay(id: $id user_id: $user_id order_id: $order_id totalPay: $totalPay transactionId: $transactionId payTime: $payTime) {
  874. id
  875. user_id {
  876. email
  877. updatedAt
  878. password
  879. telephone
  880. username
  881. createdAt
  882. openid
  883. id
  884. }
  885. order_id {
  886. deliveryTime
  887. remark
  888. updatedAt
  889. payTime
  890. orderTotalPay
  891. createdAt
  892. orderStatus
  893. id
  894. orderShipFee
  895. count
  896. productTotalPay
  897. }
  898. totalPay
  899. transactionId
  900. payTime
  901. }
  902. }
  903. mutation createuser($email: String, $updatedAt: String, $password: String, $telephone: String, $username: String, $createdAt: String, $openid: String, $id: ID!, $userData_id: ID) {
  904. createuser: create_user(email: $email updatedAt: $updatedAt password: $password telephone: $telephone username: $username createdAt: $createdAt openid: $openid id: $id userData_id: $userData_id) {
  905. email
  906. updatedAt
  907. password
  908. telephone
  909. username
  910. createdAt
  911. openid
  912. id
  913. userData_id {
  914. id
  915. nickname
  916. avatar
  917. isVip
  918. vipCode
  919. userPoint
  920. createdAt
  921. updatedAt
  922. }
  923. }
  924. }
  925. mutation updateslideshow($id: ID, $name: String, $img: String, $status: Int, $createdAt: String, $updatedAt: String) {
  926. updateslideshow: update_slideshow(id: $id name: $name img: $img status: $status createdAt: $createdAt updatedAt: $updatedAt) {
  927. id
  928. name
  929. img
  930. status
  931. createdAt
  932. updatedAt
  933. }
  934. }
  935. mutation updateshop($description: String, $address: String, $updatedAt: String, $telephone: String, $name: String, $createdAt: String, $status: String, $id: ID, $slideshow: String, $notice: String, $intro: String, $img: String) {
  936. updateshop: update_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) {
  937. description
  938. address
  939. updatedAt
  940. telephone
  941. name
  942. createdAt
  943. status
  944. id
  945. slideshow
  946. notice
  947. intro
  948. img
  949. }
  950. }
  951. mutation deletecategory($id: ID, $name: String, $img: String, $order: Int, $status: String, $createdAt: String, $updatedAt: String) {
  952. deletecategory: delete_category(id: $id name: $name img: $img order: $order status: $status createdAt: $createdAt updatedAt: $updatedAt)
  953. }
  954. mutation updateproduct($recommend: Int, $updatedAt: String, $unit: String, $name: String, $createdAt: String, $status: String, $id: ID, $intro: String, $price: Float, $category_id: ID, $img: String, $stock: Int) {
  955. updateproduct: update_product(recommend: $recommend updatedAt: $updatedAt unit: $unit name: $name createdAt: $createdAt status: $status id: $id intro: $intro price: $price category_id: $category_id img: $img stock: $stock) {
  956. recommend
  957. updatedAt
  958. unit
  959. name
  960. createdAt
  961. status
  962. id
  963. intro
  964. price
  965. category_id {
  966. id
  967. name
  968. img
  969. order
  970. status
  971. createdAt
  972. updatedAt
  973. }
  974. img
  975. stock
  976. }
  977. }
  978. mutation updateuser($email: String, $updatedAt: String, $password: String, $telephone: String, $username: String, $createdAt: String, $openid: String, $id: ID, $userData_id: ID) {
  979. updateuser: update_user(email: $email updatedAt: $updatedAt password: $password telephone: $telephone username: $username createdAt: $createdAt openid: $openid id: $id userData_id: $userData_id) {
  980. email
  981. updatedAt
  982. password
  983. telephone
  984. username
  985. createdAt
  986. openid
  987. id
  988. userData_id {
  989. id
  990. nickname
  991. avatar
  992. isVip
  993. vipCode
  994. userPoint
  995. createdAt
  996. updatedAt
  997. }
  998. }
  999. }
  1000. 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) {
  1001. 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) {
  1002. description
  1003. address
  1004. updatedAt
  1005. telephone
  1006. name
  1007. createdAt
  1008. status
  1009. id
  1010. slideshow
  1011. notice
  1012. intro
  1013. img
  1014. }
  1015. }
  1016. mutation deleteslideshow($id: ID, $name: String, $img: String, $status: Int, $createdAt: String, $updatedAt: String) {
  1017. deleteslideshow: delete_slideshow(id: $id name: $name img: $img status: $status createdAt: $createdAt updatedAt: $updatedAt)
  1018. }
  1019. mutation updateuserData($id: ID, $nickname: String, $avatar: String, $isVip: Boolean, $vipCode: String, $userPoint: Int, $createdAt: String, $updatedAt: String) {
  1020. updateuserData: update_userData(id: $id nickname: $nickname avatar: $avatar isVip: $isVip vipCode: $vipCode userPoint: $userPoint createdAt: $createdAt updatedAt: $updatedAt) {
  1021. id
  1022. nickname
  1023. avatar
  1024. isVip
  1025. vipCode
  1026. userPoint
  1027. createdAt
  1028. updatedAt
  1029. }
  1030. }
  1031. mutation createuserCollect($id: ID!, $product_id: ID, $user_id: ID, $createdAt: String, $updatedAt: String) {
  1032. createuserCollect: create_userCollect(id: $id product_id: $product_id user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt) {
  1033. id
  1034. user_id {
  1035. email
  1036. updatedAt
  1037. password
  1038. telephone
  1039. username
  1040. createdAt
  1041. openid
  1042. id
  1043. }
  1044. product_id {
  1045. recommend
  1046. updatedAt
  1047. unit
  1048. name
  1049. createdAt
  1050. status
  1051. id
  1052. intro
  1053. price
  1054. img
  1055. stock
  1056. }
  1057. createdAt
  1058. updatedAt
  1059. }
  1060. }
  1061. 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) {
  1062. createuserAddress: create_userAddress(address: $address updatedAt: $updatedAt telephone: $telephone
  1063. default: $default city: $city username: $username postcode: $postcode createdAt: $createdAt deletedAt: $deletedAt id: $id user_id: $user_id area: $area province: $province) {
  1064. address
  1065. updatedAt
  1066. telephone
  1067. default
  1068. city
  1069. username
  1070. postcode
  1071. createdAt
  1072. deletedAt
  1073. id
  1074. user_id {
  1075. email
  1076. updatedAt
  1077. password
  1078. telephone
  1079. username
  1080. createdAt
  1081. openid
  1082. id
  1083. }
  1084. area
  1085. province
  1086. }
  1087. }
  1088. mutation deleteuserCart($id: ID, $user_id: ID, $product_id: ID, $specificationStock_id: ID, $count: Int, $createdAt: String, $updatedAt: String) {
  1089. deleteuserCart: delete_userCart(id: $id user_id: $user_id product_id: $product_id specificationStock_id: $specificationStock_id count: $count createdAt: $createdAt updatedAt: $updatedAt)
  1090. }
  1091. mutation updateuserAddress($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) {
  1092. updateuserAddress: update_userAddress(address: $address updatedAt: $updatedAt telephone: $telephone
  1093. default: $default city: $city username: $username postcode: $postcode createdAt: $createdAt deletedAt: $deletedAt id: $id user_id: $user_id area: $area province: $province) {
  1094. address
  1095. updatedAt
  1096. telephone
  1097. default
  1098. city
  1099. username
  1100. postcode
  1101. createdAt
  1102. deletedAt
  1103. id
  1104. user_id {
  1105. email
  1106. updatedAt
  1107. password
  1108. telephone
  1109. username
  1110. createdAt
  1111. openid
  1112. id
  1113. }
  1114. area
  1115. province
  1116. }
  1117. }
  1118. mutation updatecategory($id: ID, $name: String, $img: String, $order: Int, $status: String, $createdAt: String, $updatedAt: String) {
  1119. updatecategory: update_category(id: $id name: $name img: $img order: $order status: $status createdAt: $createdAt updatedAt: $updatedAt) {
  1120. id
  1121. name
  1122. img
  1123. order
  1124. status
  1125. createdAt
  1126. updatedAt
  1127. }
  1128. }
  1129. mutation createslideshow($id: ID!, $name: String, $img: String, $status: Int, $createdAt: String, $updatedAt: String) {
  1130. createslideshow: create_slideshow(id: $id name: $name img: $img status: $status createdAt: $createdAt updatedAt: $updatedAt) {
  1131. id
  1132. name
  1133. img
  1134. status
  1135. createdAt
  1136. updatedAt
  1137. }
  1138. }
  1139. mutation updateadmin($id: ID, $openid: String, $username: String, $password: String, $telephone: String, $email: String, $createdAt: String, $updatedAt: String) {
  1140. updateadmin: update_admin(id: $id openid: $openid username: $username password: $password telephone: $telephone email: $email createdAt: $createdAt updatedAt: $updatedAt) {
  1141. id
  1142. openid
  1143. username
  1144. password
  1145. telephone
  1146. email
  1147. createdAt
  1148. updatedAt
  1149. }
  1150. }
  1151. mutation deletespecificationStock($id: ID, $product_id: ID, $color: String, $size: String, $stock: Int, $status: String, $createdAt: String, $updatedAt: String) {
  1152. deletespecificationStock: delete_specificationStock(id: $id product_id: $product_id color: $color size: $size stock: $stock status: $status createdAt: $createdAt updatedAt: $updatedAt)
  1153. }
  1154. mutation createuserSearch($id: ID!, $keyword: Int, $user_id: ID, $createdAt: String, $updatedAt: String) {
  1155. createuserSearch: create_userSearch(id: $id keyword: $keyword user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt) {
  1156. id
  1157. user_id {
  1158. email
  1159. updatedAt
  1160. password
  1161. telephone
  1162. username
  1163. createdAt
  1164. openid
  1165. id
  1166. }
  1167. keyword
  1168. createdAt
  1169. updatedAt
  1170. }
  1171. }
  1172. mutation createproduct($recommend: Int, $updatedAt: String, $unit: String, $name: String, $createdAt: String, $status: String, $id: ID!, $intro: String, $price: Float, $category_id: ID, $img: String, $stock: Int) {
  1173. createproduct: create_product(recommend: $recommend updatedAt: $updatedAt unit: $unit name: $name createdAt: $createdAt status: $status id: $id intro: $intro price: $price category_id: $category_id img: $img stock: $stock) {
  1174. recommend
  1175. updatedAt
  1176. unit
  1177. name
  1178. createdAt
  1179. status
  1180. id
  1181. intro
  1182. price
  1183. category_id {
  1184. id
  1185. name
  1186. img
  1187. order
  1188. status
  1189. createdAt
  1190. updatedAt
  1191. }
  1192. img
  1193. stock
  1194. }
  1195. }
  1196. mutation deleteuserData($id: ID, $nickname: String, $avatar: String, $isVip: Boolean, $vipCode: String, $userPoint: Int, $createdAt: String, $updatedAt: String) {
  1197. deleteuserData: delete_userData(id: $id nickname: $nickname avatar: $avatar isVip: $isVip vipCode: $vipCode userPoint: $userPoint createdAt: $createdAt updatedAt: $updatedAt)
  1198. }
  1199. mutation createspecificationStock($id: ID!, $product_id: ID, $color: String, $size: String, $stock: Int, $status: String, $createdAt: String, $updatedAt: String) {
  1200. createspecificationStock: create_specificationStock(id: $id product_id: $product_id color: $color size: $size stock: $stock status: $status createdAt: $createdAt updatedAt: $updatedAt) {
  1201. id
  1202. product_id {
  1203. recommend
  1204. updatedAt
  1205. unit
  1206. name
  1207. createdAt
  1208. status
  1209. id
  1210. intro
  1211. price
  1212. img
  1213. stock
  1214. }
  1215. color
  1216. size
  1217. stock
  1218. status
  1219. createdAt
  1220. updatedAt
  1221. }
  1222. }
  1223. mutation deleteshop($description: String, $address: String, $updatedAt: String, $telephone: String, $name: String, $createdAt: String, $status: String, $id: ID, $notice: String, $intro: String) {
  1224. deleteshop: delete_shop(description: $description address: $address updatedAt: $updatedAt telephone: $telephone name: $name createdAt: $createdAt status: $status id: $id notice: $notice intro: $intro)
  1225. }
  1226. mutation deleteorderProduct($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) {
  1227. deleteorderProduct: delete_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)
  1228. }
  1229. mutation deleteuserCollect($id: ID, $user_id: ID, $createdAt: String, $updatedAt: String) {
  1230. deleteuserCollect: delete_userCollect(id: $id user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt)
  1231. }
  1232. mutation updateuserCollect($id: ID, $product_id: ID, $user_id: ID, $createdAt: String, $updatedAt: String) {
  1233. updateuserCollect: update_userCollect(id: $id product_id: $product_id user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt) {
  1234. id
  1235. user_id {
  1236. email
  1237. updatedAt
  1238. password
  1239. telephone
  1240. username
  1241. createdAt
  1242. openid
  1243. id
  1244. }
  1245. product_id {
  1246. recommend
  1247. updatedAt
  1248. unit
  1249. name
  1250. createdAt
  1251. status
  1252. id
  1253. intro
  1254. price
  1255. img
  1256. stock
  1257. }
  1258. createdAt
  1259. updatedAt
  1260. }
  1261. }
  1262. mutation deleteorder($deliveryTime: String, $remark: String, $updatedAt: String, $orderLogistics_id: ID, $payTime: String, $orderTotalPay: Float, $createdAt: String, $orderStatus: String, $userAddress_id: ID, $id: ID, $orderShipFee: Float, $count: Int, $user_id: ID, $productTotalPay: Float, $orderPay_id: ID) {
  1263. deleteorder: delete_order(deliveryTime: $deliveryTime remark: $remark updatedAt: $updatedAt orderLogistics_id: $orderLogistics_id payTime: $payTime orderTotalPay: $orderTotalPay createdAt: $createdAt orderStatus: $orderStatus userAddress_id: $userAddress_id id: $id orderShipFee: $orderShipFee count: $count user_id: $user_id productTotalPay: $productTotalPay orderPay_id: $orderPay_id)
  1264. }
  1265. mutation deleteadmin($id: ID, $openid: String, $username: String, $password: String, $telephone: String, $email: String, $createdAt: String, $updatedAt: String) {
  1266. deleteadmin: delete_admin(id: $id openid: $openid username: $username password: $password telephone: $telephone email: $email createdAt: $createdAt updatedAt: $updatedAt)
  1267. }
  1268. mutation updatespecificationStock($id: ID, $product_id: ID, $color: String, $size: String, $stock: Int, $status: String, $createdAt: String, $updatedAt: String) {
  1269. updatespecificationStock: update_specificationStock(id: $id product_id: $product_id color: $color size: $size stock: $stock status: $status createdAt: $createdAt updatedAt: $updatedAt) {
  1270. id
  1271. product_id {
  1272. recommend
  1273. updatedAt
  1274. unit
  1275. name
  1276. createdAt
  1277. status
  1278. id
  1279. intro
  1280. price
  1281. img
  1282. stock
  1283. }
  1284. color
  1285. size
  1286. stock
  1287. status
  1288. createdAt
  1289. updatedAt
  1290. }
  1291. }
  1292. mutation deleteuserAddress($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) {
  1293. deleteuserAddress: delete_userAddress(address: $address updatedAt: $updatedAt telephone: $telephone
  1294. default: $default city: $city username: $username postcode: $postcode createdAt: $createdAt deletedAt: $deletedAt id: $id user_id: $user_id area: $area province: $province)
  1295. }
  1296. mutation updateuserCart($id: ID, $user_id: ID, $product_id: ID, $specificationStock_id: ID, $count: Int, $createdAt: String, $updatedAt: String) {
  1297. updateuserCart: update_userCart(id: $id user_id: $user_id product_id: $product_id specificationStock_id: $specificationStock_id count: $count createdAt: $createdAt updatedAt: $updatedAt) {
  1298. id
  1299. user_id {
  1300. email
  1301. updatedAt
  1302. password
  1303. telephone
  1304. username
  1305. createdAt
  1306. openid
  1307. id
  1308. }
  1309. product_id {
  1310. recommend
  1311. updatedAt
  1312. unit
  1313. name
  1314. createdAt
  1315. status
  1316. id
  1317. intro
  1318. price
  1319. img
  1320. stock
  1321. }
  1322. specificationStock_id {
  1323. id
  1324. color
  1325. size
  1326. stock
  1327. status
  1328. createdAt
  1329. updatedAt
  1330. }
  1331. count
  1332. createdAt
  1333. updatedAt
  1334. }
  1335. }
  1336. mutation deleteuser($email: String, $updatedAt: String, $password: String, $telephone: String, $username: String, $createdAt: String, $openid: String, $id: ID, $userData_id: ID) {
  1337. deleteuser: delete_user(email: $email updatedAt: $updatedAt password: $password telephone: $telephone username: $username createdAt: $createdAt openid: $openid id: $id userData_id: $userData_id)
  1338. }
  1339. mutation createuserCart($id: ID!, $user_id: ID, $product_id: ID, $specificationStock_id: ID, $count: Int, $createdAt: String, $updatedAt: String) {
  1340. createuserCart: create_userCart(id: $id user_id: $user_id product_id: $product_id specificationStock_id: $specificationStock_id count: $count createdAt: $createdAt updatedAt: $updatedAt) {
  1341. id
  1342. user_id {
  1343. email
  1344. updatedAt
  1345. password
  1346. telephone
  1347. username
  1348. createdAt
  1349. openid
  1350. id
  1351. }
  1352. product_id {
  1353. recommend
  1354. updatedAt
  1355. unit
  1356. name
  1357. createdAt
  1358. status
  1359. id
  1360. intro
  1361. price
  1362. img
  1363. stock
  1364. }
  1365. specificationStock_id {
  1366. id
  1367. color
  1368. size
  1369. stock
  1370. status
  1371. createdAt
  1372. updatedAt
  1373. }
  1374. count
  1375. createdAt
  1376. updatedAt
  1377. }
  1378. }
  1379. mutation createuserData($id: ID!, $nickname: String, $avatar: String, $isVip: Boolean, $vipCode: String, $userPoint: Int, $createdAt: String, $updatedAt: String) {
  1380. createuserData: create_userData(id: $id nickname: $nickname avatar: $avatar isVip: $isVip vipCode: $vipCode userPoint: $userPoint createdAt: $createdAt updatedAt: $updatedAt) {
  1381. id
  1382. nickname
  1383. avatar
  1384. isVip
  1385. vipCode
  1386. userPoint
  1387. createdAt
  1388. updatedAt
  1389. }
  1390. }
  1391. mutation createorder($deliveryTime: String, $remark: String, $updatedAt: String, $orderLogistics_id: ID, $payTime: String, $orderTotalPay: Float, $createdAt: String, $orderStatus: String, $userAddress_id: ID, $id: ID!, $orderShipFee: Float, $count: Int, $user_id: ID, $productTotalPay: Float, $orderPay_id: ID) {
  1392. createorder: create_order(deliveryTime: $deliveryTime remark: $remark updatedAt: $updatedAt orderLogistics_id: $orderLogistics_id payTime: $payTime orderTotalPay: $orderTotalPay createdAt: $createdAt orderStatus: $orderStatus userAddress_id: $userAddress_id id: $id orderShipFee: $orderShipFee count: $count user_id: $user_id productTotalPay: $productTotalPay orderPay_id: $orderPay_id) {
  1393. deliveryTime
  1394. remark
  1395. updatedAt
  1396. orderLogistics_id {
  1397. updatedAt
  1398. logisticsFee
  1399. expressId
  1400. createdAt
  1401. consigneeTel
  1402. id
  1403. consignAddress
  1404. LogisticsStatus
  1405. consigneeName
  1406. }
  1407. payTime
  1408. orderTotalPay
  1409. createdAt
  1410. orderStatus
  1411. userAddress_id {
  1412. address
  1413. updatedAt
  1414. telephone
  1415. default
  1416. city
  1417. username
  1418. postcode
  1419. createdAt
  1420. deletedAt
  1421. id
  1422. area
  1423. province
  1424. }
  1425. id
  1426. orderShipFee
  1427. count
  1428. user_id {
  1429. email
  1430. updatedAt
  1431. password
  1432. telephone
  1433. username
  1434. createdAt
  1435. openid
  1436. id
  1437. }
  1438. productTotalPay
  1439. orderPay_id {
  1440. id
  1441. totalPay
  1442. transactionId
  1443. payTime
  1444. }
  1445. }
  1446. }
  1447. mutation deleteuserSearch($id: ID, $user_id: ID, $createdAt: String, $updatedAt: String) {
  1448. deleteuserSearch: delete_userSearch(id: $id user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt)
  1449. }
  1450. mutation deleteorderPay($id: ID, $user_id: ID, $order_id: ID, $totalPay: Float, $transactionId: String, $payTime: String) {
  1451. deleteorderPay: delete_orderPay(id: $id user_id: $user_id order_id: $order_id totalPay: $totalPay transactionId: $transactionId payTime: $payTime)
  1452. }
  1453. mutation updateorderPay($id: ID, $user_id: ID, $order_id: ID, $totalPay: Float, $transactionId: String, $payTime: String) {
  1454. updateorderPay: update_orderPay(id: $id user_id: $user_id order_id: $order_id totalPay: $totalPay transactionId: $transactionId payTime: $payTime) {
  1455. id
  1456. user_id {
  1457. email
  1458. updatedAt
  1459. password
  1460. telephone
  1461. username
  1462. createdAt
  1463. openid
  1464. id
  1465. }
  1466. order_id {
  1467. deliveryTime
  1468. remark
  1469. updatedAt
  1470. payTime
  1471. orderTotalPay
  1472. createdAt
  1473. orderStatus
  1474. id
  1475. orderShipFee
  1476. count
  1477. productTotalPay
  1478. }
  1479. totalPay
  1480. transactionId
  1481. payTime
  1482. }
  1483. }
  1484. mutation deleteorderLogistics($updatedAt: String, $logisticsFee: Float, $expressId: String, $createdAt: String, $order_id: ID, $consigneeTel: String, $id: ID, $consignAddress: String, $LogisticsStatus: String, $user_id: ID, $consigneeName: String) {
  1485. deleteorderLogistics: delete_orderLogistics(updatedAt: $updatedAt logisticsFee: $logisticsFee expressId: $expressId createdAt: $createdAt order_id: $order_id consigneeTel: $consigneeTel id: $id consignAddress: $consignAddress LogisticsStatus: $LogisticsStatus user_id: $user_id consigneeName: $consigneeName)
  1486. }
  1487. mutation updateuserSearch($id: ID, $keyword: Int, $user_id: ID, $createdAt: String, $updatedAt: String) {
  1488. updateuserSearch: update_userSearch(id: $id keyword: $keyword user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt) {
  1489. id
  1490. user_id {
  1491. email
  1492. updatedAt
  1493. password
  1494. telephone
  1495. username
  1496. createdAt
  1497. openid
  1498. id
  1499. }
  1500. keyword
  1501. createdAt
  1502. updatedAt
  1503. }
  1504. }
  1505. mutation updateorder($deliveryTime: String, $remark: String, $updatedAt: String, $orderLogistics_id: ID, $payTime: String, $orderTotalPay: Float, $createdAt: String, $orderStatus: String, $userAddress_id: ID, $id: ID, $orderShipFee: Float, $count: Int, $user_id: ID, $productTotalPay: Float, $orderPay_id: ID) {
  1506. updateorder: update_order(deliveryTime: $deliveryTime remark: $remark updatedAt: $updatedAt orderLogistics_id: $orderLogistics_id payTime: $payTime orderTotalPay: $orderTotalPay createdAt: $createdAt orderStatus: $orderStatus userAddress_id: $userAddress_id id: $id orderShipFee: $orderShipFee count: $count user_id: $user_id productTotalPay: $productTotalPay orderPay_id: $orderPay_id) {
  1507. deliveryTime
  1508. remark
  1509. updatedAt
  1510. orderLogistics_id {
  1511. updatedAt
  1512. logisticsFee
  1513. expressId
  1514. createdAt
  1515. consigneeTel
  1516. id
  1517. consignAddress
  1518. LogisticsStatus
  1519. consigneeName
  1520. }
  1521. payTime
  1522. orderTotalPay
  1523. createdAt
  1524. orderStatus
  1525. userAddress_id {
  1526. address
  1527. updatedAt
  1528. telephone
  1529. default
  1530. city
  1531. username
  1532. postcode
  1533. createdAt
  1534. deletedAt
  1535. id
  1536. area
  1537. province
  1538. }
  1539. id
  1540. orderShipFee
  1541. count
  1542. user_id {
  1543. email
  1544. updatedAt
  1545. password
  1546. telephone
  1547. username
  1548. createdAt
  1549. openid
  1550. id
  1551. }
  1552. productTotalPay
  1553. orderPay_id {
  1554. id
  1555. totalPay
  1556. transactionId
  1557. payTime
  1558. }
  1559. }
  1560. }
  1561. mutation createorderLogistics($updatedAt: String, $logisticsFee: Float, $expressId: String, $createdAt: String, $order_id: ID, $consigneeTel: String, $id: ID!, $consignAddress: String, $LogisticsStatus: String, $user_id: ID, $consigneeName: String) {
  1562. createorderLogistics: create_orderLogistics(updatedAt: $updatedAt logisticsFee: $logisticsFee expressId: $expressId createdAt: $createdAt order_id: $order_id consigneeTel: $consigneeTel id: $id consignAddress: $consignAddress LogisticsStatus: $LogisticsStatus user_id: $user_id consigneeName: $consigneeName) {
  1563. updatedAt
  1564. logisticsFee
  1565. expressId
  1566. createdAt
  1567. order_id {
  1568. deliveryTime
  1569. remark
  1570. updatedAt
  1571. payTime
  1572. orderTotalPay
  1573. createdAt
  1574. orderStatus
  1575. id
  1576. orderShipFee
  1577. count
  1578. productTotalPay
  1579. }
  1580. consigneeTel
  1581. id
  1582. consignAddress
  1583. LogisticsStatus
  1584. user_id {
  1585. email
  1586. updatedAt
  1587. password
  1588. telephone
  1589. username
  1590. createdAt
  1591. openid
  1592. id
  1593. }
  1594. consigneeName
  1595. }
  1596. }
  1597. mutation updateorderLogistics($updatedAt: String, $logisticsFee: Float, $expressId: String, $createdAt: String, $order_id: ID, $consigneeTel: String, $id: ID, $consignAddress: String, $LogisticsStatus: String, $user_id: ID, $consigneeName: String) {
  1598. updateorderLogistics: update_orderLogistics(updatedAt: $updatedAt logisticsFee: $logisticsFee expressId: $expressId createdAt: $createdAt order_id: $order_id consigneeTel: $consigneeTel id: $id consignAddress: $consignAddress LogisticsStatus: $LogisticsStatus user_id: $user_id consigneeName: $consigneeName) {
  1599. updatedAt
  1600. logisticsFee
  1601. expressId
  1602. createdAt
  1603. order_id {
  1604. deliveryTime
  1605. remark
  1606. updatedAt
  1607. payTime
  1608. orderTotalPay
  1609. createdAt
  1610. orderStatus
  1611. id
  1612. orderShipFee
  1613. count
  1614. productTotalPay
  1615. }
  1616. consigneeTel
  1617. id
  1618. consignAddress
  1619. LogisticsStatus
  1620. user_id {
  1621. email
  1622. updatedAt
  1623. password
  1624. telephone
  1625. username
  1626. createdAt
  1627. openid
  1628. id
  1629. }
  1630. consigneeName
  1631. }
  1632. }
  1633. 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) {
  1634. 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) {
  1635. updatedAt
  1636. productColor
  1637. unit
  1638. product_id {
  1639. recommend
  1640. updatedAt
  1641. unit
  1642. name
  1643. createdAt
  1644. status
  1645. id
  1646. intro
  1647. price
  1648. img
  1649. stock
  1650. }
  1651. productSize
  1652. orderPay
  1653. createdAt
  1654. productImg
  1655. productName
  1656. specificationStock_id {
  1657. id
  1658. color
  1659. size
  1660. stock
  1661. status
  1662. createdAt
  1663. updatedAt
  1664. }
  1665. order_id {
  1666. deliveryTime
  1667. remark
  1668. updatedAt
  1669. payTime
  1670. orderTotalPay
  1671. createdAt
  1672. orderStatus
  1673. id
  1674. orderShipFee
  1675. count
  1676. productTotalPay
  1677. }
  1678. productPrice
  1679. id
  1680. count
  1681. productPay
  1682. user_id {
  1683. email
  1684. updatedAt
  1685. password
  1686. telephone
  1687. username
  1688. createdAt
  1689. openid
  1690. id
  1691. }
  1692. orderPay_id {
  1693. id
  1694. totalPay
  1695. transactionId
  1696. payTime
  1697. }
  1698. }
  1699. }
  1700. mutation deleteproduct($recommend: Int, $updatedAt: String, $unit: String, $name: String, $createdAt: String, $status: String, $id: ID, $intro: String, $price: Float, $category_id: ID, $img: String, $stock: Int) {
  1701. deleteproduct: delete_product(recommend: $recommend updatedAt: $updatedAt unit: $unit name: $name createdAt: $createdAt status: $status id: $id intro: $intro price: $price category_id: $category_id img: $img stock: $stock)
  1702. }
  1703. mutation createcategory($id: ID!, $name: String, $img: String, $order: Int, $status: String, $createdAt: String, $updatedAt: String) {
  1704. createcategory: create_category(id: $id name: $name img: $img order: $order status: $status createdAt: $createdAt updatedAt: $updatedAt) {
  1705. id
  1706. name
  1707. img
  1708. order
  1709. status
  1710. createdAt
  1711. updatedAt
  1712. }
  1713. }
  1714. mutation updateorderProduct($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) {
  1715. updateorderProduct: update_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) {
  1716. updatedAt
  1717. productColor
  1718. unit
  1719. product_id {
  1720. recommend
  1721. updatedAt
  1722. unit
  1723. name
  1724. createdAt
  1725. status
  1726. id
  1727. intro
  1728. price
  1729. img
  1730. stock
  1731. }
  1732. productSize
  1733. orderPay
  1734. createdAt
  1735. productImg
  1736. productName
  1737. specificationStock_id {
  1738. id
  1739. color
  1740. size
  1741. stock
  1742. status
  1743. createdAt
  1744. updatedAt
  1745. }
  1746. order_id {
  1747. deliveryTime
  1748. remark
  1749. updatedAt
  1750. payTime
  1751. orderTotalPay
  1752. createdAt
  1753. orderStatus
  1754. id
  1755. orderShipFee
  1756. count
  1757. productTotalPay
  1758. }
  1759. productPrice
  1760. id
  1761. count
  1762. productPay
  1763. user_id {
  1764. email
  1765. updatedAt
  1766. password
  1767. telephone
  1768. username
  1769. createdAt
  1770. openid
  1771. id
  1772. }
  1773. orderPay_id {
  1774. id
  1775. totalPay
  1776. transactionId
  1777. payTime
  1778. }
  1779. }
  1780. }
  1781. mutation createadmin($id: ID!, $openid: String, $username: String, $password: String, $telephone: String, $email: String, $createdAt: String, $updatedAt: String) {
  1782. createadmin: create_admin(id: $id openid: $openid username: $username password: $password telephone: $telephone email: $email createdAt: $createdAt updatedAt: $updatedAt) {
  1783. id
  1784. openid
  1785. username
  1786. password
  1787. telephone
  1788. email
  1789. createdAt
  1790. updatedAt
  1791. }
  1792. }