ec_enhance.txt 62 KB

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