graphqlALL.txt 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. query userbyid($id: ID) {
  2. userbyid: user_by_id(id: $id) {
  3. email
  4. updatedAt
  5. admin
  6. password
  7. telephone
  8. nickname
  9. username
  10. createdAt
  11. openid
  12. id
  13. }
  14. }
  15. query serverbyprops($name: String, $description: String, $img: String, $createdAt: String, $updatedAt: String) {
  16. serverbyprops: server_by_props(name: $name description: $description img: $img createdAt: $createdAt updatedAt: $updatedAt) {
  17. id
  18. name
  19. description
  20. img
  21. createdAt
  22. updatedAt
  23. }
  24. }
  25. query servicebyid($id: ID) {
  26. servicebyid: service_by_id(id: $id) {
  27. id
  28. server_id {
  29. id
  30. name
  31. description
  32. img
  33. createdAt
  34. updatedAt
  35. }
  36. repertory_id {
  37. id
  38. count
  39. createdAt
  40. updatedAt
  41. }
  42. description
  43. price
  44. startTime
  45. lastTime
  46. createdAt
  47. updatedAt
  48. }
  49. }
  50. query repertorybyid($id: ID) {
  51. repertorybyid: repertory_by_id(id: $id) {
  52. id
  53. service_id {
  54. id
  55. description
  56. price
  57. startTime
  58. lastTime
  59. createdAt
  60. updatedAt
  61. }
  62. count
  63. createdAt
  64. updatedAt
  65. }
  66. }
  67. query orderbyid($id: ID) {
  68. orderbyid: order_by_id(id: $id) {
  69. payStatus
  70. contactName
  71. remark
  72. payCount
  73. updatedAt
  74. payTime
  75. contactTelephone
  76. createdAt
  77. orderStatus
  78. id
  79. user_id {
  80. email
  81. updatedAt
  82. admin
  83. password
  84. telephone
  85. nickname
  86. username
  87. createdAt
  88. openid
  89. id
  90. }
  91. service_id {
  92. id
  93. description
  94. price
  95. startTime
  96. lastTime
  97. createdAt
  98. updatedAt
  99. }
  100. customerNumber
  101. }
  102. }
  103. query repertorybyprops($service_id: ID, $count: Int, $createdAt: String, $updatedAt: String) {
  104. repertorybyprops: repertory_by_props(service_id: $service_id count: $count createdAt: $createdAt updatedAt: $updatedAt) {
  105. id
  106. service_id {
  107. id
  108. description
  109. price
  110. startTime
  111. lastTime
  112. createdAt
  113. updatedAt
  114. }
  115. count
  116. createdAt
  117. updatedAt
  118. }
  119. }
  120. query servicebyprops($server_id: ID, $repertory_id: ID, $description: String, $price: Float, $startTime: String, $lastTime: String, $createdAt: String, $updatedAt: String) {
  121. servicebyprops: service_by_props(server_id: $server_id repertory_id: $repertory_id description: $description price: $price startTime: $startTime lastTime: $lastTime createdAt: $createdAt updatedAt: $updatedAt) {
  122. id
  123. server_id {
  124. id
  125. name
  126. description
  127. img
  128. createdAt
  129. updatedAt
  130. }
  131. repertory_id {
  132. id
  133. count
  134. createdAt
  135. updatedAt
  136. }
  137. description
  138. price
  139. startTime
  140. lastTime
  141. createdAt
  142. updatedAt
  143. }
  144. }
  145. query serverbyid($id: ID) {
  146. serverbyid: server_by_id(id: $id) {
  147. id
  148. name
  149. description
  150. img
  151. createdAt
  152. updatedAt
  153. }
  154. }
  155. query userbyprops($email: String, $updatedAt: String, $admin: String, $password: String, $telephone: String, $nickname: String, $username: String, $createdAt: String, $openid: String) {
  156. userbyprops: user_by_props(email: $email updatedAt: $updatedAt admin: $admin password: $password telephone: $telephone nickname: $nickname username: $username createdAt: $createdAt openid: $openid) {
  157. email
  158. updatedAt
  159. admin
  160. password
  161. telephone
  162. nickname
  163. username
  164. createdAt
  165. openid
  166. id
  167. }
  168. }
  169. query orderbyprops($payStatus: String, $contactName: String, $remark: String, $payCount: String, $updatedAt: String, $payTime: String, $contactTelephone: String, $createdAt: String, $orderStatus: String, $user_id: ID, $service_id: ID, $customerNumber: Int) {
  170. orderbyprops: order_by_props(payStatus: $payStatus contactName: $contactName remark: $remark payCount: $payCount updatedAt: $updatedAt payTime: $payTime contactTelephone: $contactTelephone createdAt: $createdAt orderStatus: $orderStatus user_id: $user_id service_id: $service_id customerNumber: $customerNumber) {
  171. payStatus
  172. contactName
  173. remark
  174. payCount
  175. updatedAt
  176. payTime
  177. contactTelephone
  178. createdAt
  179. orderStatus
  180. id
  181. user_id {
  182. email
  183. updatedAt
  184. admin
  185. password
  186. telephone
  187. nickname
  188. username
  189. createdAt
  190. openid
  191. id
  192. }
  193. service_id {
  194. id
  195. description
  196. price
  197. startTime
  198. lastTime
  199. createdAt
  200. updatedAt
  201. }
  202. customerNumber
  203. }
  204. }
  205. mutation createuser($email: String, $updatedAt: String, $admin: String, $password: String, $telephone: String, $nickname: String, $username: String, $createdAt: String, $openid: String, $id: ID!) {
  206. createuser: create_user(email: $email updatedAt: $updatedAt admin: $admin password: $password telephone: $telephone nickname: $nickname username: $username createdAt: $createdAt openid: $openid id: $id) {
  207. email
  208. updatedAt
  209. admin
  210. password
  211. telephone
  212. nickname
  213. username
  214. createdAt
  215. openid
  216. id
  217. }
  218. }
  219. mutation updateuser($email: String, $updatedAt: String, $admin: String, $password: String, $telephone: String, $nickname: String, $username: String, $createdAt: String, $openid: String, $id: ID) {
  220. updateuser: update_user(email: $email updatedAt: $updatedAt admin: $admin password: $password telephone: $telephone nickname: $nickname username: $username createdAt: $createdAt openid: $openid id: $id) {
  221. email
  222. updatedAt
  223. admin
  224. password
  225. telephone
  226. nickname
  227. username
  228. createdAt
  229. openid
  230. id
  231. }
  232. }
  233. mutation updateservice($id: ID, $server_id: ID, $repertory_id: ID, $description: String, $price: Float, $startTime: String, $lastTime: String, $createdAt: String, $updatedAt: String) {
  234. updateservice: update_service(id: $id server_id: $server_id repertory_id: $repertory_id description: $description price: $price startTime: $startTime lastTime: $lastTime createdAt: $createdAt updatedAt: $updatedAt) {
  235. id
  236. server_id {
  237. id
  238. name
  239. description
  240. img
  241. createdAt
  242. updatedAt
  243. }
  244. repertory_id {
  245. id
  246. count
  247. createdAt
  248. updatedAt
  249. }
  250. description
  251. price
  252. startTime
  253. lastTime
  254. createdAt
  255. updatedAt
  256. }
  257. }
  258. mutation createservice($id: ID!, $server_id: ID, $repertory_id: ID, $description: String, $price: Float, $startTime: String, $lastTime: String, $createdAt: String, $updatedAt: String) {
  259. createservice: create_service(id: $id server_id: $server_id repertory_id: $repertory_id description: $description price: $price startTime: $startTime lastTime: $lastTime createdAt: $createdAt updatedAt: $updatedAt) {
  260. id
  261. server_id {
  262. id
  263. name
  264. description
  265. img
  266. createdAt
  267. updatedAt
  268. }
  269. repertory_id {
  270. id
  271. count
  272. createdAt
  273. updatedAt
  274. }
  275. description
  276. price
  277. startTime
  278. lastTime
  279. createdAt
  280. updatedAt
  281. }
  282. }
  283. mutation updateserver($id: ID, $name: String, $description: String, $img: String, $createdAt: String, $updatedAt: String) {
  284. updateserver: update_server(id: $id name: $name description: $description img: $img createdAt: $createdAt updatedAt: $updatedAt) {
  285. id
  286. name
  287. description
  288. img
  289. createdAt
  290. updatedAt
  291. }
  292. }
  293. mutation createrepertory($id: ID!, $service_id: ID, $count: Int, $createdAt: String, $updatedAt: String) {
  294. createrepertory: create_repertory(id: $id service_id: $service_id count: $count createdAt: $createdAt updatedAt: $updatedAt) {
  295. id
  296. service_id {
  297. id
  298. description
  299. price
  300. startTime
  301. lastTime
  302. createdAt
  303. updatedAt
  304. }
  305. count
  306. createdAt
  307. updatedAt
  308. }
  309. }
  310. mutation deleteorder($payStatus: String, $contactName: String, $remark: String, $payCount: String, $updatedAt: String, $payTime: String, $contactTelephone: String, $createdAt: String, $orderStatus: String, $id: ID, $user_id: ID, $service_id: ID, $customerNumber: Int) {
  311. deleteorder: delete_order(payStatus: $payStatus contactName: $contactName remark: $remark payCount: $payCount updatedAt: $updatedAt payTime: $payTime contactTelephone: $contactTelephone createdAt: $createdAt orderStatus: $orderStatus id: $id user_id: $user_id service_id: $service_id customerNumber: $customerNumber)
  312. }
  313. mutation deleteuser($email: String, $updatedAt: String, $admin: String, $password: String, $telephone: String, $nickname: String, $username: String, $createdAt: String, $openid: String, $id: ID) {
  314. deleteuser: delete_user(email: $email updatedAt: $updatedAt admin: $admin password: $password telephone: $telephone nickname: $nickname username: $username createdAt: $createdAt openid: $openid id: $id)
  315. }
  316. mutation createorder($payStatus: String, $contactName: String, $remark: String, $payCount: String, $updatedAt: String, $payTime: String, $contactTelephone: String, $createdAt: String, $orderStatus: String, $id: ID!, $user_id: ID, $service_id: ID, $customerNumber: Int) {
  317. createorder: create_order(payStatus: $payStatus contactName: $contactName remark: $remark payCount: $payCount updatedAt: $updatedAt payTime: $payTime contactTelephone: $contactTelephone createdAt: $createdAt orderStatus: $orderStatus id: $id user_id: $user_id service_id: $service_id customerNumber: $customerNumber) {
  318. payStatus
  319. contactName
  320. remark
  321. payCount
  322. updatedAt
  323. payTime
  324. contactTelephone
  325. createdAt
  326. orderStatus
  327. id
  328. user_id {
  329. email
  330. updatedAt
  331. admin
  332. password
  333. telephone
  334. nickname
  335. username
  336. createdAt
  337. openid
  338. id
  339. }
  340. service_id {
  341. id
  342. description
  343. price
  344. startTime
  345. lastTime
  346. createdAt
  347. updatedAt
  348. }
  349. customerNumber
  350. }
  351. }
  352. mutation deleterepertory($id: ID, $service_id: ID, $count: Int, $createdAt: String, $updatedAt: String) {
  353. deleterepertory: delete_repertory(id: $id service_id: $service_id count: $count createdAt: $createdAt updatedAt: $updatedAt)
  354. }
  355. mutation updateorder($payStatus: String, $contactName: String, $remark: String, $payCount: String, $updatedAt: String, $payTime: String, $contactTelephone: String, $createdAt: String, $orderStatus: String, $id: ID, $user_id: ID, $service_id: ID, $customerNumber: Int) {
  356. updateorder: update_order(payStatus: $payStatus contactName: $contactName remark: $remark payCount: $payCount updatedAt: $updatedAt payTime: $payTime contactTelephone: $contactTelephone createdAt: $createdAt orderStatus: $orderStatus id: $id user_id: $user_id service_id: $service_id customerNumber: $customerNumber) {
  357. payStatus
  358. contactName
  359. remark
  360. payCount
  361. updatedAt
  362. payTime
  363. contactTelephone
  364. createdAt
  365. orderStatus
  366. id
  367. user_id {
  368. email
  369. updatedAt
  370. admin
  371. password
  372. telephone
  373. nickname
  374. username
  375. createdAt
  376. openid
  377. id
  378. }
  379. service_id {
  380. id
  381. description
  382. price
  383. startTime
  384. lastTime
  385. createdAt
  386. updatedAt
  387. }
  388. customerNumber
  389. }
  390. }
  391. mutation deleteserver($id: ID, $name: String, $description: String, $img: String, $createdAt: String, $updatedAt: String) {
  392. deleteserver: delete_server(id: $id name: $name description: $description img: $img createdAt: $createdAt updatedAt: $updatedAt)
  393. }
  394. mutation deleteservice($id: ID, $server_id: ID, $repertory_id: ID, $description: String, $price: Float, $startTime: String, $lastTime: String, $createdAt: String, $updatedAt: String) {
  395. deleteservice: delete_service(id: $id server_id: $server_id repertory_id: $repertory_id description: $description price: $price startTime: $startTime lastTime: $lastTime createdAt: $createdAt updatedAt: $updatedAt)
  396. }
  397. mutation updaterepertory($id: ID, $service_id: ID, $count: Int, $createdAt: String, $updatedAt: String) {
  398. updaterepertory: update_repertory(id: $id service_id: $service_id count: $count createdAt: $createdAt updatedAt: $updatedAt) {
  399. id
  400. service_id {
  401. id
  402. description
  403. price
  404. startTime
  405. lastTime
  406. createdAt
  407. updatedAt
  408. }
  409. count
  410. createdAt
  411. updatedAt
  412. }
  413. }
  414. mutation createserver($id: ID!, $name: String, $description: String, $img: String, $createdAt: String, $updatedAt: String) {
  415. createserver: create_server(id: $id name: $name description: $description img: $img createdAt: $createdAt updatedAt: $updatedAt) {
  416. id
  417. name
  418. description
  419. img
  420. createdAt
  421. updatedAt
  422. }
  423. }