ec_enhance.txt 60 KB

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