ec.txt 46 KB

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