all_graphql.txt 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475
  1. query userbyid($id: ID) {
  2. userbyid: user_by_id(id: $id) {
  3. email
  4. updatedAt
  5. password
  6. telephone
  7. nickname
  8. username
  9. createdAt
  10. openid
  11. language
  12. id
  13. avatar
  14. }
  15. }
  16. query ticketbyid($id: ID) {
  17. ticketbyid: ticket_by_id(id: $id) {
  18. updatedAt
  19. repliedBy
  20. content
  21. repliedAt
  22. createdAt
  23. type
  24. title
  25. status
  26. id
  27. user_id {
  28. email
  29. updatedAt
  30. password
  31. telephone
  32. nickname
  33. username
  34. createdAt
  35. openid
  36. language
  37. id
  38. avatar
  39. }
  40. screenshot
  41. }
  42. }
  43. query notificationbyprops($user_id: ID, $type: String, $webhook: String, $name: String) {
  44. notificationbyprops: notification_by_props(user_id: $user_id type: $type webhook: $webhook name: $name) {
  45. id
  46. user_id {
  47. email
  48. updatedAt
  49. password
  50. telephone
  51. nickname
  52. username
  53. createdAt
  54. openid
  55. language
  56. id
  57. avatar
  58. }
  59. type
  60. webhook
  61. name
  62. }
  63. }
  64. query deploybyprops($description: String, $updatedAt: String, $cosBucketName: String, $memorySize: Int, $fc_id: ID, $createdAt: String, $subnetId: String, $cosObjectName: String, $region: String, $vpcId: String, $cosBucketRegion: String, $cloud_id: ID, $user_id: ID, $serviceName: String, $timeout: Int, $handler: String, $functionName: String) {
  65. deploybyprops: deploy_by_props(description: $description updatedAt: $updatedAt cosBucketName: $cosBucketName memorySize: $memorySize fc_id: $fc_id createdAt: $createdAt subnetId: $subnetId cosObjectName: $cosObjectName region: $region vpcId: $vpcId cosBucketRegion: $cosBucketRegion cloud_id: $cloud_id user_id: $user_id serviceName: $serviceName timeout: $timeout handler: $handler functionName: $functionName) {
  66. description
  67. updatedAt
  68. cosBucketName
  69. memorySize
  70. fc_id {
  71. id
  72. fcType
  73. createdAt
  74. updatedAt
  75. }
  76. createdAt
  77. subnetId
  78. cosObjectName
  79. region
  80. vpcId
  81. cosBucketRegion
  82. id
  83. cloud_id {
  84. id
  85. cloudName
  86. secretId
  87. secretKey
  88. appId
  89. createdAt
  90. updatedAt
  91. }
  92. user_id {
  93. email
  94. updatedAt
  95. password
  96. telephone
  97. nickname
  98. username
  99. createdAt
  100. openid
  101. language
  102. id
  103. avatar
  104. }
  105. serviceName
  106. timeout
  107. handler
  108. functionName
  109. }
  110. }
  111. query deploybyid($id: ID) {
  112. deploybyid: deploy_by_id(id: $id) {
  113. description
  114. updatedAt
  115. cosBucketName
  116. memorySize
  117. fc_id {
  118. id
  119. fcType
  120. createdAt
  121. updatedAt
  122. }
  123. createdAt
  124. subnetId
  125. cosObjectName
  126. region
  127. vpcId
  128. cosBucketRegion
  129. id
  130. cloud_id {
  131. id
  132. cloudName
  133. secretId
  134. secretKey
  135. appId
  136. createdAt
  137. updatedAt
  138. }
  139. user_id {
  140. email
  141. updatedAt
  142. password
  143. telephone
  144. nickname
  145. username
  146. createdAt
  147. openid
  148. language
  149. id
  150. avatar
  151. }
  152. serviceName
  153. timeout
  154. handler
  155. functionName
  156. }
  157. }
  158. query databasebyid($id: ID) {
  159. databasebyid: database_by_id(id: $id) {
  160. id
  161. user_id {
  162. email
  163. updatedAt
  164. password
  165. telephone
  166. nickname
  167. username
  168. createdAt
  169. openid
  170. language
  171. id
  172. avatar
  173. }
  174. dbName
  175. dbUsername
  176. dbPassword
  177. dbHost
  178. dbPort
  179. createdAt
  180. updatedAt
  181. }
  182. }
  183. query notificationbyid($id: ID) {
  184. notificationbyid: notification_by_id(id: $id) {
  185. id
  186. user_id {
  187. email
  188. updatedAt
  189. password
  190. telephone
  191. nickname
  192. username
  193. createdAt
  194. openid
  195. language
  196. id
  197. avatar
  198. }
  199. type
  200. webhook
  201. name
  202. }
  203. }
  204. query apiGWGroupbyid($id: ID) {
  205. apiGWGroupbyid: apiGWGroup_by_id(id: $id) {
  206. environmentName
  207. userStatus
  208. defaultDomain
  209. updatedAt
  210. userDomain
  211. groupName
  212. createdAt
  213. frontType
  214. region
  215. serviceId
  216. status
  217. id
  218. cloud_id {
  219. id
  220. cloudName
  221. secretId
  222. secretKey
  223. appId
  224. createdAt
  225. updatedAt
  226. }
  227. user_id {
  228. email
  229. updatedAt
  230. password
  231. telephone
  232. nickname
  233. username
  234. createdAt
  235. openid
  236. language
  237. id
  238. avatar
  239. }
  240. }
  241. }
  242. query fcbyprops($user_id: ID, $cloud_id: ID, $fcType: String, $schema_id: ID, $wxConfig_id: ID, $createdAt: String, $updatedAt: String) {
  243. fcbyprops: fc_by_props(user_id: $user_id cloud_id: $cloud_id fcType: $fcType schema_id: $schema_id wxConfig_id: $wxConfig_id createdAt: $createdAt updatedAt: $updatedAt) {
  244. id
  245. user_id {
  246. email
  247. updatedAt
  248. password
  249. telephone
  250. nickname
  251. username
  252. createdAt
  253. openid
  254. language
  255. id
  256. avatar
  257. }
  258. cloud_id {
  259. id
  260. cloudName
  261. secretId
  262. secretKey
  263. appId
  264. createdAt
  265. updatedAt
  266. }
  267. fcType
  268. schema_id {
  269. updatedAt
  270. schemaState
  271. authWrite
  272. authReadObjects
  273. createdAt
  274. authRead
  275. schemaName
  276. reference
  277. id
  278. schemaData
  279. authReadWrite
  280. authWriteObjects
  281. }
  282. wxConfig_id {
  283. updatedAt
  284. mch_id
  285. appName
  286. notify_url
  287. appSecret
  288. createdAt
  289. appID
  290. token
  291. spbill_create_ip
  292. enter_url
  293. id
  294. pay_api_key
  295. body
  296. welcome_words
  297. attach
  298. }
  299. createdAt
  300. updatedAt
  301. }
  302. }
  303. query apiGWGroupbyprops($environmentName: String, $userStatus: String, $defaultDomain: String, $updatedAt: String, $userDomain: String, $groupName: String, $createdAt: String, $frontType: String, $region: String, $serviceId: String, $status: String, $cloud_id: ID, $user_id: ID) {
  304. apiGWGroupbyprops: apiGWGroup_by_props(environmentName: $environmentName userStatus: $userStatus defaultDomain: $defaultDomain updatedAt: $updatedAt userDomain: $userDomain groupName: $groupName createdAt: $createdAt frontType: $frontType region: $region serviceId: $serviceId status: $status cloud_id: $cloud_id user_id: $user_id) {
  305. environmentName
  306. userStatus
  307. defaultDomain
  308. updatedAt
  309. userDomain
  310. groupName
  311. createdAt
  312. frontType
  313. region
  314. serviceId
  315. status
  316. id
  317. cloud_id {
  318. id
  319. cloudName
  320. secretId
  321. secretKey
  322. appId
  323. createdAt
  324. updatedAt
  325. }
  326. user_id {
  327. email
  328. updatedAt
  329. password
  330. telephone
  331. nickname
  332. username
  333. createdAt
  334. openid
  335. language
  336. id
  337. avatar
  338. }
  339. }
  340. }
  341. query apiGWPathbyprops($apiGWName: String, $updatedAt: String, $apiGWGroup_id: ID, $createdAt: String, $deploy_id: ID, $serviceType: String, $apiGWPath: String, $user_id: ID, $timeout: Int, $apiGWDesc: String, $requestMethod: String, $apiId: String) {
  342. apiGWPathbyprops: apiGWPath_by_props(apiGWName: $apiGWName updatedAt: $updatedAt apiGWGroup_id: $apiGWGroup_id createdAt: $createdAt deploy_id: $deploy_id serviceType: $serviceType apiGWPath: $apiGWPath user_id: $user_id timeout: $timeout apiGWDesc: $apiGWDesc requestMethod: $requestMethod apiId: $apiId) {
  343. apiGWName
  344. updatedAt
  345. apiGWGroup_id {
  346. environmentName
  347. userStatus
  348. defaultDomain
  349. updatedAt
  350. userDomain
  351. groupName
  352. createdAt
  353. frontType
  354. region
  355. serviceId
  356. status
  357. id
  358. }
  359. createdAt
  360. deploy_id {
  361. description
  362. updatedAt
  363. cosBucketName
  364. memorySize
  365. createdAt
  366. subnetId
  367. cosObjectName
  368. region
  369. vpcId
  370. cosBucketRegion
  371. id
  372. serviceName
  373. timeout
  374. handler
  375. functionName
  376. }
  377. serviceType
  378. id
  379. apiGWPath
  380. user_id {
  381. email
  382. updatedAt
  383. password
  384. telephone
  385. nickname
  386. username
  387. createdAt
  388. openid
  389. language
  390. id
  391. avatar
  392. }
  393. timeout
  394. apiGWDesc
  395. requestMethod
  396. apiId
  397. }
  398. }
  399. query schemabyprops($updatedAt: String, $schemaState: String, $authWrite: String, $createdAt: String, $authRead: String, $schemaName: String, $reference: String, $schemaData: String, $authReadWrite: String, $user_id: ID) {
  400. schemabyprops: schema_by_props(updatedAt: $updatedAt schemaState: $schemaState authWrite: $authWrite createdAt: $createdAt authRead: $authRead schemaName: $schemaName reference: $reference schemaData: $schemaData authReadWrite: $authReadWrite user_id: $user_id) {
  401. updatedAt
  402. schemaState
  403. authWrite
  404. authReadObjects
  405. createdAt
  406. authRead
  407. schemaName
  408. reference
  409. id
  410. schemaData
  411. authReadWrite
  412. user_id {
  413. email
  414. updatedAt
  415. password
  416. telephone
  417. nickname
  418. username
  419. createdAt
  420. openid
  421. language
  422. id
  423. avatar
  424. }
  425. authWriteObjects
  426. }
  427. }
  428. query schemabyid($id: ID) {
  429. schemabyid: schema_by_id(id: $id) {
  430. updatedAt
  431. schemaState
  432. authWrite
  433. authReadObjects
  434. createdAt
  435. authRead
  436. schemaName
  437. reference
  438. id
  439. schemaData
  440. authReadWrite
  441. user_id {
  442. email
  443. updatedAt
  444. password
  445. telephone
  446. nickname
  447. username
  448. createdAt
  449. openid
  450. language
  451. id
  452. avatar
  453. }
  454. authWriteObjects
  455. }
  456. }
  457. query wxConfigbyid($id: ID) {
  458. wxConfigbyid: wxConfig_by_id(id: $id) {
  459. updatedAt
  460. mch_id
  461. appName
  462. notify_url
  463. appSecret
  464. createdAt
  465. appID
  466. token
  467. spbill_create_ip
  468. enter_url
  469. id
  470. pay_api_key
  471. user_id {
  472. email
  473. updatedAt
  474. password
  475. telephone
  476. nickname
  477. username
  478. createdAt
  479. openid
  480. language
  481. id
  482. avatar
  483. }
  484. body
  485. welcome_words
  486. attach
  487. }
  488. }
  489. query projectbyid($id: ID) {
  490. projectbyid: project_by_id(id: $id) {
  491. updatedAt
  492. database_id {
  493. id
  494. dbName
  495. dbUsername
  496. dbPassword
  497. dbHost
  498. dbPort
  499. createdAt
  500. updatedAt
  501. }
  502. apiGWGroup_id {
  503. environmentName
  504. userStatus
  505. defaultDomain
  506. updatedAt
  507. userDomain
  508. groupName
  509. createdAt
  510. frontType
  511. region
  512. serviceId
  513. status
  514. id
  515. }
  516. case_id {
  517. description
  518. updatedAt
  519. like
  520. createdAt
  521. type
  522. title
  523. codeAddress
  524. deployedNum
  525. id
  526. detailDescription
  527. detailAttention
  528. detailImages
  529. img
  530. }
  531. createdAt
  532. projectStatus
  533. projectName
  534. deploy_id {
  535. description
  536. updatedAt
  537. cosBucketName
  538. memorySize
  539. createdAt
  540. subnetId
  541. cosObjectName
  542. region
  543. vpcId
  544. cosBucketRegion
  545. id
  546. serviceName
  547. timeout
  548. handler
  549. functionName
  550. }
  551. notification_id {
  552. id
  553. type
  554. webhook
  555. name
  556. }
  557. id
  558. projectType
  559. cloud_id {
  560. id
  561. cloudName
  562. secretId
  563. secretKey
  564. appId
  565. createdAt
  566. updatedAt
  567. }
  568. user_id {
  569. email
  570. updatedAt
  571. password
  572. telephone
  573. nickname
  574. username
  575. createdAt
  576. openid
  577. language
  578. id
  579. avatar
  580. }
  581. wxConfig_id {
  582. updatedAt
  583. mch_id
  584. appName
  585. notify_url
  586. appSecret
  587. createdAt
  588. appID
  589. token
  590. spbill_create_ip
  591. enter_url
  592. id
  593. pay_api_key
  594. body
  595. welcome_words
  596. attach
  597. }
  598. schema_id {
  599. updatedAt
  600. schemaState
  601. authWrite
  602. authReadObjects
  603. createdAt
  604. authRead
  605. schemaName
  606. reference
  607. id
  608. schemaData
  609. authReadWrite
  610. authWriteObjects
  611. }
  612. }
  613. }
  614. query casebyid($id: ID) {
  615. casebyid: case_by_id(id: $id) {
  616. description
  617. updatedAt
  618. like
  619. createdAt
  620. type
  621. title
  622. codeAddress
  623. deployedNum
  624. id
  625. detailDescription
  626. detailAttention
  627. user_id {
  628. email
  629. updatedAt
  630. password
  631. telephone
  632. nickname
  633. username
  634. createdAt
  635. openid
  636. language
  637. id
  638. avatar
  639. }
  640. schema_id {
  641. updatedAt
  642. schemaState
  643. authWrite
  644. authReadObjects
  645. createdAt
  646. authRead
  647. schemaName
  648. reference
  649. id
  650. schemaData
  651. authReadWrite
  652. authWriteObjects
  653. }
  654. detailImages
  655. img
  656. }
  657. }
  658. query cloudbyid($id: ID) {
  659. cloudbyid: cloud_by_id(id: $id) {
  660. id
  661. user_id {
  662. email
  663. updatedAt
  664. password
  665. telephone
  666. nickname
  667. username
  668. createdAt
  669. openid
  670. language
  671. id
  672. avatar
  673. }
  674. cloudName
  675. secretId
  676. secretKey
  677. appId
  678. createdAt
  679. updatedAt
  680. }
  681. }
  682. query projectbyprops($updatedAt: String, $database_id: ID, $apiGWGroup_id: ID, $case_id: ID, $createdAt: String, $projectStatus: String, $projectName: String, $deploy_id: ID, $notification_id: ID, $projectType: String, $cloud_id: ID, $user_id: ID, $wxConfig_id: ID, $schema_id: ID) {
  683. projectbyprops: project_by_props(updatedAt: $updatedAt database_id: $database_id apiGWGroup_id: $apiGWGroup_id case_id: $case_id createdAt: $createdAt projectStatus: $projectStatus projectName: $projectName deploy_id: $deploy_id notification_id: $notification_id projectType: $projectType cloud_id: $cloud_id user_id: $user_id wxConfig_id: $wxConfig_id schema_id: $schema_id) {
  684. updatedAt
  685. database_id {
  686. id
  687. dbName
  688. dbUsername
  689. dbPassword
  690. dbHost
  691. dbPort
  692. createdAt
  693. updatedAt
  694. }
  695. apiGWGroup_id {
  696. environmentName
  697. userStatus
  698. defaultDomain
  699. updatedAt
  700. userDomain
  701. groupName
  702. createdAt
  703. frontType
  704. region
  705. serviceId
  706. status
  707. id
  708. }
  709. case_id {
  710. description
  711. updatedAt
  712. like
  713. createdAt
  714. type
  715. title
  716. codeAddress
  717. deployedNum
  718. id
  719. detailDescription
  720. detailAttention
  721. detailImages
  722. img
  723. }
  724. createdAt
  725. projectStatus
  726. projectName
  727. deploy_id {
  728. description
  729. updatedAt
  730. cosBucketName
  731. memorySize
  732. createdAt
  733. subnetId
  734. cosObjectName
  735. region
  736. vpcId
  737. cosBucketRegion
  738. id
  739. serviceName
  740. timeout
  741. handler
  742. functionName
  743. }
  744. notification_id {
  745. id
  746. type
  747. webhook
  748. name
  749. }
  750. id
  751. projectType
  752. cloud_id {
  753. id
  754. cloudName
  755. secretId
  756. secretKey
  757. appId
  758. createdAt
  759. updatedAt
  760. }
  761. user_id {
  762. email
  763. updatedAt
  764. password
  765. telephone
  766. nickname
  767. username
  768. createdAt
  769. openid
  770. language
  771. id
  772. avatar
  773. }
  774. wxConfig_id {
  775. updatedAt
  776. mch_id
  777. appName
  778. notify_url
  779. appSecret
  780. createdAt
  781. appID
  782. token
  783. spbill_create_ip
  784. enter_url
  785. id
  786. pay_api_key
  787. body
  788. welcome_words
  789. attach
  790. }
  791. schema_id {
  792. updatedAt
  793. schemaState
  794. authWrite
  795. authReadObjects
  796. createdAt
  797. authRead
  798. schemaName
  799. reference
  800. id
  801. schemaData
  802. authReadWrite
  803. authWriteObjects
  804. }
  805. }
  806. }
  807. query wxConfigbyprops($updatedAt: String, $mch_id: String, $appName: String, $notify_url: String, $appSecret: String, $createdAt: String, $appID: String, $token: String, $spbill_create_ip: String, $enter_url: String, $pay_api_key: String, $user_id: ID, $body: String, $welcome_words: String, $attach: String) {
  808. wxConfigbyprops: wxConfig_by_props(updatedAt: $updatedAt mch_id: $mch_id appName: $appName notify_url: $notify_url appSecret: $appSecret createdAt: $createdAt appID: $appID token: $token spbill_create_ip: $spbill_create_ip enter_url: $enter_url pay_api_key: $pay_api_key user_id: $user_id body: $body welcome_words: $welcome_words attach: $attach) {
  809. updatedAt
  810. mch_id
  811. appName
  812. notify_url
  813. appSecret
  814. createdAt
  815. appID
  816. token
  817. spbill_create_ip
  818. enter_url
  819. id
  820. pay_api_key
  821. user_id {
  822. email
  823. updatedAt
  824. password
  825. telephone
  826. nickname
  827. username
  828. createdAt
  829. openid
  830. language
  831. id
  832. avatar
  833. }
  834. body
  835. welcome_words
  836. attach
  837. }
  838. }
  839. query apiGWPathbyid($id: ID) {
  840. apiGWPathbyid: apiGWPath_by_id(id: $id) {
  841. apiGWName
  842. updatedAt
  843. apiGWGroup_id {
  844. environmentName
  845. userStatus
  846. defaultDomain
  847. updatedAt
  848. userDomain
  849. groupName
  850. createdAt
  851. frontType
  852. region
  853. serviceId
  854. status
  855. id
  856. }
  857. createdAt
  858. deploy_id {
  859. description
  860. updatedAt
  861. cosBucketName
  862. memorySize
  863. createdAt
  864. subnetId
  865. cosObjectName
  866. region
  867. vpcId
  868. cosBucketRegion
  869. id
  870. serviceName
  871. timeout
  872. handler
  873. functionName
  874. }
  875. serviceType
  876. id
  877. apiGWPath
  878. user_id {
  879. email
  880. updatedAt
  881. password
  882. telephone
  883. nickname
  884. username
  885. createdAt
  886. openid
  887. language
  888. id
  889. avatar
  890. }
  891. timeout
  892. apiGWDesc
  893. requestMethod
  894. apiId
  895. }
  896. }
  897. query orderbyid($id: ID) {
  898. orderbyid: order_by_id(id: $id) {
  899. id
  900. user_id {
  901. email
  902. updatedAt
  903. password
  904. telephone
  905. nickname
  906. username
  907. createdAt
  908. openid
  909. language
  910. id
  911. avatar
  912. }
  913. createdAt
  914. updatedAt
  915. }
  916. }
  917. query cloudbyprops($user_id: ID, $cloudName: String, $secretId: String, $secretKey: String, $appId: String, $createdAt: String, $updatedAt: String) {
  918. cloudbyprops: cloud_by_props(user_id: $user_id cloudName: $cloudName secretId: $secretId secretKey: $secretKey appId: $appId createdAt: $createdAt updatedAt: $updatedAt) {
  919. id
  920. user_id {
  921. email
  922. updatedAt
  923. password
  924. telephone
  925. nickname
  926. username
  927. createdAt
  928. openid
  929. language
  930. id
  931. avatar
  932. }
  933. cloudName
  934. secretId
  935. secretKey
  936. appId
  937. createdAt
  938. updatedAt
  939. }
  940. }
  941. query casebyprops($description: String, $updatedAt: String, $like: Int, $createdAt: String, $type: String, $title: String, $codeAddress: String, $deployedNum: Int, $detailDescription: String, $detailAttention: String, $user_id: ID, $schema_id: ID, $img: String) {
  942. casebyprops: case_by_props(description: $description updatedAt: $updatedAt like: $like createdAt: $createdAt type: $type title: $title codeAddress: $codeAddress deployedNum: $deployedNum detailDescription: $detailDescription detailAttention: $detailAttention user_id: $user_id schema_id: $schema_id img: $img) {
  943. description
  944. updatedAt
  945. like
  946. createdAt
  947. type
  948. title
  949. codeAddress
  950. deployedNum
  951. id
  952. detailDescription
  953. detailAttention
  954. user_id {
  955. email
  956. updatedAt
  957. password
  958. telephone
  959. nickname
  960. username
  961. createdAt
  962. openid
  963. language
  964. id
  965. avatar
  966. }
  967. schema_id {
  968. updatedAt
  969. schemaState
  970. authWrite
  971. authReadObjects
  972. createdAt
  973. authRead
  974. schemaName
  975. reference
  976. id
  977. schemaData
  978. authReadWrite
  979. authWriteObjects
  980. }
  981. detailImages
  982. img
  983. }
  984. }
  985. query ticketbyprops($updatedAt: String, $repliedBy: ID, $content: String, $repliedAt: String, $createdAt: String, $type: String, $title: String, $status: String, $user_id: ID) {
  986. ticketbyprops: ticket_by_props(updatedAt: $updatedAt repliedBy: $repliedBy content: $content repliedAt: $repliedAt createdAt: $createdAt type: $type title: $title status: $status user_id: $user_id) {
  987. updatedAt
  988. repliedBy
  989. content
  990. repliedAt
  991. createdAt
  992. type
  993. title
  994. status
  995. id
  996. user_id {
  997. email
  998. updatedAt
  999. password
  1000. telephone
  1001. nickname
  1002. username
  1003. createdAt
  1004. openid
  1005. language
  1006. id
  1007. avatar
  1008. }
  1009. screenshot
  1010. }
  1011. }
  1012. query userbyprops($email: String, $updatedAt: String, $password: String, $telephone: String, $nickname: String, $username: String, $createdAt: String, $openid: String, $language: String, $avatar: String) {
  1013. userbyprops: user_by_props(email: $email updatedAt: $updatedAt password: $password telephone: $telephone nickname: $nickname username: $username createdAt: $createdAt openid: $openid language: $language avatar: $avatar) {
  1014. email
  1015. updatedAt
  1016. password
  1017. telephone
  1018. nickname
  1019. username
  1020. createdAt
  1021. openid
  1022. language
  1023. id
  1024. avatar
  1025. }
  1026. }
  1027. query orderbyprops($user_id: ID, $createdAt: String, $updatedAt: String) {
  1028. orderbyprops: order_by_props(user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt) {
  1029. id
  1030. user_id {
  1031. email
  1032. updatedAt
  1033. password
  1034. telephone
  1035. nickname
  1036. username
  1037. createdAt
  1038. openid
  1039. language
  1040. id
  1041. avatar
  1042. }
  1043. createdAt
  1044. updatedAt
  1045. }
  1046. }
  1047. query fcbyid($id: ID) {
  1048. fcbyid: fc_by_id(id: $id) {
  1049. id
  1050. user_id {
  1051. email
  1052. updatedAt
  1053. password
  1054. telephone
  1055. nickname
  1056. username
  1057. createdAt
  1058. openid
  1059. language
  1060. id
  1061. avatar
  1062. }
  1063. cloud_id {
  1064. id
  1065. cloudName
  1066. secretId
  1067. secretKey
  1068. appId
  1069. createdAt
  1070. updatedAt
  1071. }
  1072. fcType
  1073. schema_id {
  1074. updatedAt
  1075. schemaState
  1076. authWrite
  1077. authReadObjects
  1078. createdAt
  1079. authRead
  1080. schemaName
  1081. reference
  1082. id
  1083. schemaData
  1084. authReadWrite
  1085. authWriteObjects
  1086. }
  1087. wxConfig_id {
  1088. updatedAt
  1089. mch_id
  1090. appName
  1091. notify_url
  1092. appSecret
  1093. createdAt
  1094. appID
  1095. token
  1096. spbill_create_ip
  1097. enter_url
  1098. id
  1099. pay_api_key
  1100. body
  1101. welcome_words
  1102. attach
  1103. }
  1104. createdAt
  1105. updatedAt
  1106. }
  1107. }
  1108. query databasebyprops($user_id: ID, $dbName: String, $dbUsername: String, $dbPassword: String, $dbHost: String, $dbPort: String, $createdAt: String, $updatedAt: String) {
  1109. databasebyprops: database_by_props(user_id: $user_id dbName: $dbName dbUsername: $dbUsername dbPassword: $dbPassword dbHost: $dbHost dbPort: $dbPort createdAt: $createdAt updatedAt: $updatedAt) {
  1110. id
  1111. user_id {
  1112. email
  1113. updatedAt
  1114. password
  1115. telephone
  1116. nickname
  1117. username
  1118. createdAt
  1119. openid
  1120. language
  1121. id
  1122. avatar
  1123. }
  1124. dbName
  1125. dbUsername
  1126. dbPassword
  1127. dbHost
  1128. dbPort
  1129. createdAt
  1130. updatedAt
  1131. }
  1132. }
  1133. mutation createuser($email: String, $updatedAt: String, $password: String, $telephone: String, $nickname: String, $username: String, $createdAt: String, $openid: String, $language: String, $id: ID!, $avatar: String) {
  1134. createuser: create_user(email: $email updatedAt: $updatedAt password: $password telephone: $telephone nickname: $nickname username: $username createdAt: $createdAt openid: $openid language: $language id: $id avatar: $avatar) {
  1135. email
  1136. updatedAt
  1137. password
  1138. telephone
  1139. nickname
  1140. username
  1141. createdAt
  1142. openid
  1143. language
  1144. id
  1145. avatar
  1146. }
  1147. }
  1148. mutation createcloud($id: ID!, $user_id: ID, $cloudName: String, $secretId: String, $secretKey: String, $appId: String, $createdAt: String, $updatedAt: String) {
  1149. createcloud: create_cloud(id: $id user_id: $user_id cloudName: $cloudName secretId: $secretId secretKey: $secretKey appId: $appId createdAt: $createdAt updatedAt: $updatedAt) {
  1150. id
  1151. user_id {
  1152. email
  1153. updatedAt
  1154. password
  1155. telephone
  1156. nickname
  1157. username
  1158. createdAt
  1159. openid
  1160. language
  1161. id
  1162. avatar
  1163. }
  1164. cloudName
  1165. secretId
  1166. secretKey
  1167. appId
  1168. createdAt
  1169. updatedAt
  1170. }
  1171. }
  1172. mutation updateschema($updatedAt: String, $schemaState: String, $authWrite: String, $authReadObjects: String, $createdAt: String, $authRead: String, $schemaName: String, $reference: String, $id: ID, $schemaData: String, $authReadWrite: String, $user_id: ID, $authWriteObjects: String) {
  1173. updateschema: update_schema(updatedAt: $updatedAt schemaState: $schemaState authWrite: $authWrite authReadObjects: $authReadObjects createdAt: $createdAt authRead: $authRead schemaName: $schemaName reference: $reference id: $id schemaData: $schemaData authReadWrite: $authReadWrite user_id: $user_id authWriteObjects: $authWriteObjects) {
  1174. updatedAt
  1175. schemaState
  1176. authWrite
  1177. authReadObjects
  1178. createdAt
  1179. authRead
  1180. schemaName
  1181. reference
  1182. id
  1183. schemaData
  1184. authReadWrite
  1185. user_id {
  1186. email
  1187. updatedAt
  1188. password
  1189. telephone
  1190. nickname
  1191. username
  1192. createdAt
  1193. openid
  1194. language
  1195. id
  1196. avatar
  1197. }
  1198. authWriteObjects
  1199. }
  1200. }
  1201. mutation createapiGWPath($apiGWName: String, $updatedAt: String, $apiGWGroup_id: ID, $createdAt: String, $deploy_id: ID, $serviceType: String, $id: ID!, $apiGWPath: String, $user_id: ID, $timeout: Int, $apiGWDesc: String, $requestMethod: String, $apiId: String) {
  1202. createapiGWPath: create_apiGWPath(apiGWName: $apiGWName updatedAt: $updatedAt apiGWGroup_id: $apiGWGroup_id createdAt: $createdAt deploy_id: $deploy_id serviceType: $serviceType id: $id apiGWPath: $apiGWPath user_id: $user_id timeout: $timeout apiGWDesc: $apiGWDesc requestMethod: $requestMethod apiId: $apiId) {
  1203. apiGWName
  1204. updatedAt
  1205. apiGWGroup_id {
  1206. environmentName
  1207. userStatus
  1208. defaultDomain
  1209. updatedAt
  1210. userDomain
  1211. groupName
  1212. createdAt
  1213. frontType
  1214. region
  1215. serviceId
  1216. status
  1217. id
  1218. }
  1219. createdAt
  1220. deploy_id {
  1221. description
  1222. updatedAt
  1223. cosBucketName
  1224. memorySize
  1225. createdAt
  1226. subnetId
  1227. cosObjectName
  1228. region
  1229. vpcId
  1230. cosBucketRegion
  1231. id
  1232. serviceName
  1233. timeout
  1234. handler
  1235. functionName
  1236. }
  1237. serviceType
  1238. id
  1239. apiGWPath
  1240. user_id {
  1241. email
  1242. updatedAt
  1243. password
  1244. telephone
  1245. nickname
  1246. username
  1247. createdAt
  1248. openid
  1249. language
  1250. id
  1251. avatar
  1252. }
  1253. timeout
  1254. apiGWDesc
  1255. requestMethod
  1256. apiId
  1257. }
  1258. }
  1259. mutation createproject($updatedAt: String, $database_id: ID, $apiGWGroup_id: ID, $case_id: ID, $createdAt: String, $projectStatus: String, $projectName: String, $deploy_id: ID, $notification_id: ID, $id: ID!, $projectType: String, $cloud_id: ID, $user_id: ID, $wxConfig_id: ID, $schema_id: ID) {
  1260. createproject: create_project(updatedAt: $updatedAt database_id: $database_id apiGWGroup_id: $apiGWGroup_id case_id: $case_id createdAt: $createdAt projectStatus: $projectStatus projectName: $projectName deploy_id: $deploy_id notification_id: $notification_id id: $id projectType: $projectType cloud_id: $cloud_id user_id: $user_id wxConfig_id: $wxConfig_id schema_id: $schema_id) {
  1261. updatedAt
  1262. database_id {
  1263. id
  1264. dbName
  1265. dbUsername
  1266. dbPassword
  1267. dbHost
  1268. dbPort
  1269. createdAt
  1270. updatedAt
  1271. }
  1272. apiGWGroup_id {
  1273. environmentName
  1274. userStatus
  1275. defaultDomain
  1276. updatedAt
  1277. userDomain
  1278. groupName
  1279. createdAt
  1280. frontType
  1281. region
  1282. serviceId
  1283. status
  1284. id
  1285. }
  1286. case_id {
  1287. description
  1288. updatedAt
  1289. like
  1290. createdAt
  1291. type
  1292. title
  1293. codeAddress
  1294. deployedNum
  1295. id
  1296. detailDescription
  1297. detailAttention
  1298. detailImages
  1299. img
  1300. }
  1301. createdAt
  1302. projectStatus
  1303. projectName
  1304. deploy_id {
  1305. description
  1306. updatedAt
  1307. cosBucketName
  1308. memorySize
  1309. createdAt
  1310. subnetId
  1311. cosObjectName
  1312. region
  1313. vpcId
  1314. cosBucketRegion
  1315. id
  1316. serviceName
  1317. timeout
  1318. handler
  1319. functionName
  1320. }
  1321. notification_id {
  1322. id
  1323. type
  1324. webhook
  1325. name
  1326. }
  1327. id
  1328. projectType
  1329. cloud_id {
  1330. id
  1331. cloudName
  1332. secretId
  1333. secretKey
  1334. appId
  1335. createdAt
  1336. updatedAt
  1337. }
  1338. user_id {
  1339. email
  1340. updatedAt
  1341. password
  1342. telephone
  1343. nickname
  1344. username
  1345. createdAt
  1346. openid
  1347. language
  1348. id
  1349. avatar
  1350. }
  1351. wxConfig_id {
  1352. updatedAt
  1353. mch_id
  1354. appName
  1355. notify_url
  1356. appSecret
  1357. createdAt
  1358. appID
  1359. token
  1360. spbill_create_ip
  1361. enter_url
  1362. id
  1363. pay_api_key
  1364. body
  1365. welcome_words
  1366. attach
  1367. }
  1368. schema_id {
  1369. updatedAt
  1370. schemaState
  1371. authWrite
  1372. authReadObjects
  1373. createdAt
  1374. authRead
  1375. schemaName
  1376. reference
  1377. id
  1378. schemaData
  1379. authReadWrite
  1380. authWriteObjects
  1381. }
  1382. }
  1383. }
  1384. mutation updatewxConfig($updatedAt: String, $mch_id: String, $appName: String, $notify_url: String, $appSecret: String, $createdAt: String, $appID: String, $token: String, $spbill_create_ip: String, $enter_url: String, $id: ID, $pay_api_key: String, $user_id: ID, $body: String, $welcome_words: String, $attach: String) {
  1385. updatewxConfig: update_wxConfig(updatedAt: $updatedAt mch_id: $mch_id appName: $appName notify_url: $notify_url appSecret: $appSecret createdAt: $createdAt appID: $appID token: $token spbill_create_ip: $spbill_create_ip enter_url: $enter_url id: $id pay_api_key: $pay_api_key user_id: $user_id body: $body welcome_words: $welcome_words attach: $attach) {
  1386. updatedAt
  1387. mch_id
  1388. appName
  1389. notify_url
  1390. appSecret
  1391. createdAt
  1392. appID
  1393. token
  1394. spbill_create_ip
  1395. enter_url
  1396. id
  1397. pay_api_key
  1398. user_id {
  1399. email
  1400. updatedAt
  1401. password
  1402. telephone
  1403. nickname
  1404. username
  1405. createdAt
  1406. openid
  1407. language
  1408. id
  1409. avatar
  1410. }
  1411. body
  1412. welcome_words
  1413. attach
  1414. }
  1415. }
  1416. mutation deleteproject($updatedAt: String, $database_id: ID, $apiGWGroup_id: ID, $case_id: ID, $createdAt: String, $projectStatus: String, $projectName: String, $deploy_id: ID, $notification_id: ID, $id: ID, $projectType: String, $cloud_id: ID, $user_id: ID, $wxConfig_id: ID, $schema_id: ID) {
  1417. deleteproject: delete_project(updatedAt: $updatedAt database_id: $database_id apiGWGroup_id: $apiGWGroup_id case_id: $case_id createdAt: $createdAt projectStatus: $projectStatus projectName: $projectName deploy_id: $deploy_id notification_id: $notification_id id: $id projectType: $projectType cloud_id: $cloud_id user_id: $user_id wxConfig_id: $wxConfig_id schema_id: $schema_id)
  1418. }
  1419. mutation deleteapiGWGroup($environmentName: String, $userStatus: String, $defaultDomain: String, $updatedAt: String, $userDomain: String, $groupName: String, $createdAt: String, $frontType: String, $region: String, $serviceId: String, $status: String, $id: ID, $cloud_id: ID, $user_id: ID) {
  1420. deleteapiGWGroup: delete_apiGWGroup(environmentName: $environmentName userStatus: $userStatus defaultDomain: $defaultDomain updatedAt: $updatedAt userDomain: $userDomain groupName: $groupName createdAt: $createdAt frontType: $frontType region: $region serviceId: $serviceId status: $status id: $id cloud_id: $cloud_id user_id: $user_id)
  1421. }
  1422. mutation deletefc($id: ID, $user_id: ID, $cloud_id: ID, $fcType: String, $schema_id: ID, $wxConfig_id: ID, $createdAt: String, $updatedAt: String) {
  1423. deletefc: delete_fc(id: $id user_id: $user_id cloud_id: $cloud_id fcType: $fcType schema_id: $schema_id wxConfig_id: $wxConfig_id createdAt: $createdAt updatedAt: $updatedAt)
  1424. }
  1425. mutation updateuser($email: String, $updatedAt: String, $password: String, $telephone: String, $nickname: String, $username: String, $createdAt: String, $openid: String, $language: String, $id: ID, $avatar: String) {
  1426. updateuser: update_user(email: $email updatedAt: $updatedAt password: $password telephone: $telephone nickname: $nickname username: $username createdAt: $createdAt openid: $openid language: $language id: $id avatar: $avatar) {
  1427. email
  1428. updatedAt
  1429. password
  1430. telephone
  1431. nickname
  1432. username
  1433. createdAt
  1434. openid
  1435. language
  1436. id
  1437. avatar
  1438. }
  1439. }
  1440. mutation updateproject($updatedAt: String, $database_id: ID, $apiGWGroup_id: ID, $case_id: ID, $createdAt: String, $projectStatus: String, $projectName: String, $deploy_id: ID, $notification_id: ID, $id: ID, $projectType: String, $cloud_id: ID, $user_id: ID, $wxConfig_id: ID, $schema_id: ID) {
  1441. updateproject: update_project(updatedAt: $updatedAt database_id: $database_id apiGWGroup_id: $apiGWGroup_id case_id: $case_id createdAt: $createdAt projectStatus: $projectStatus projectName: $projectName deploy_id: $deploy_id notification_id: $notification_id id: $id projectType: $projectType cloud_id: $cloud_id user_id: $user_id wxConfig_id: $wxConfig_id schema_id: $schema_id) {
  1442. updatedAt
  1443. database_id {
  1444. id
  1445. dbName
  1446. dbUsername
  1447. dbPassword
  1448. dbHost
  1449. dbPort
  1450. createdAt
  1451. updatedAt
  1452. }
  1453. apiGWGroup_id {
  1454. environmentName
  1455. userStatus
  1456. defaultDomain
  1457. updatedAt
  1458. userDomain
  1459. groupName
  1460. createdAt
  1461. frontType
  1462. region
  1463. serviceId
  1464. status
  1465. id
  1466. }
  1467. case_id {
  1468. description
  1469. updatedAt
  1470. like
  1471. createdAt
  1472. type
  1473. title
  1474. codeAddress
  1475. deployedNum
  1476. id
  1477. detailDescription
  1478. detailAttention
  1479. detailImages
  1480. img
  1481. }
  1482. createdAt
  1483. projectStatus
  1484. projectName
  1485. deploy_id {
  1486. description
  1487. updatedAt
  1488. cosBucketName
  1489. memorySize
  1490. createdAt
  1491. subnetId
  1492. cosObjectName
  1493. region
  1494. vpcId
  1495. cosBucketRegion
  1496. id
  1497. serviceName
  1498. timeout
  1499. handler
  1500. functionName
  1501. }
  1502. notification_id {
  1503. id
  1504. type
  1505. webhook
  1506. name
  1507. }
  1508. id
  1509. projectType
  1510. cloud_id {
  1511. id
  1512. cloudName
  1513. secretId
  1514. secretKey
  1515. appId
  1516. createdAt
  1517. updatedAt
  1518. }
  1519. user_id {
  1520. email
  1521. updatedAt
  1522. password
  1523. telephone
  1524. nickname
  1525. username
  1526. createdAt
  1527. openid
  1528. language
  1529. id
  1530. avatar
  1531. }
  1532. wxConfig_id {
  1533. updatedAt
  1534. mch_id
  1535. appName
  1536. notify_url
  1537. appSecret
  1538. createdAt
  1539. appID
  1540. token
  1541. spbill_create_ip
  1542. enter_url
  1543. id
  1544. pay_api_key
  1545. body
  1546. welcome_words
  1547. attach
  1548. }
  1549. schema_id {
  1550. updatedAt
  1551. schemaState
  1552. authWrite
  1553. authReadObjects
  1554. createdAt
  1555. authRead
  1556. schemaName
  1557. reference
  1558. id
  1559. schemaData
  1560. authReadWrite
  1561. authWriteObjects
  1562. }
  1563. }
  1564. }
  1565. mutation updatefc($id: ID, $user_id: ID, $cloud_id: ID, $fcType: String, $schema_id: ID, $wxConfig_id: ID, $createdAt: String, $updatedAt: String) {
  1566. updatefc: update_fc(id: $id user_id: $user_id cloud_id: $cloud_id fcType: $fcType schema_id: $schema_id wxConfig_id: $wxConfig_id createdAt: $createdAt updatedAt: $updatedAt) {
  1567. id
  1568. user_id {
  1569. email
  1570. updatedAt
  1571. password
  1572. telephone
  1573. nickname
  1574. username
  1575. createdAt
  1576. openid
  1577. language
  1578. id
  1579. avatar
  1580. }
  1581. cloud_id {
  1582. id
  1583. cloudName
  1584. secretId
  1585. secretKey
  1586. appId
  1587. createdAt
  1588. updatedAt
  1589. }
  1590. fcType
  1591. schema_id {
  1592. updatedAt
  1593. schemaState
  1594. authWrite
  1595. authReadObjects
  1596. createdAt
  1597. authRead
  1598. schemaName
  1599. reference
  1600. id
  1601. schemaData
  1602. authReadWrite
  1603. authWriteObjects
  1604. }
  1605. wxConfig_id {
  1606. updatedAt
  1607. mch_id
  1608. appName
  1609. notify_url
  1610. appSecret
  1611. createdAt
  1612. appID
  1613. token
  1614. spbill_create_ip
  1615. enter_url
  1616. id
  1617. pay_api_key
  1618. body
  1619. welcome_words
  1620. attach
  1621. }
  1622. createdAt
  1623. updatedAt
  1624. }
  1625. }
  1626. mutation createschema($updatedAt: String, $schemaState: String, $authWrite: String, $authReadObjects: String, $createdAt: String, $authRead: String, $schemaName: String, $reference: String, $id: ID!, $schemaData: String, $authReadWrite: String, $user_id: ID, $authWriteObjects: String) {
  1627. createschema: create_schema(updatedAt: $updatedAt schemaState: $schemaState authWrite: $authWrite authReadObjects: $authReadObjects createdAt: $createdAt authRead: $authRead schemaName: $schemaName reference: $reference id: $id schemaData: $schemaData authReadWrite: $authReadWrite user_id: $user_id authWriteObjects: $authWriteObjects) {
  1628. updatedAt
  1629. schemaState
  1630. authWrite
  1631. authReadObjects
  1632. createdAt
  1633. authRead
  1634. schemaName
  1635. reference
  1636. id
  1637. schemaData
  1638. authReadWrite
  1639. user_id {
  1640. email
  1641. updatedAt
  1642. password
  1643. telephone
  1644. nickname
  1645. username
  1646. createdAt
  1647. openid
  1648. language
  1649. id
  1650. avatar
  1651. }
  1652. authWriteObjects
  1653. }
  1654. }
  1655. mutation createcase($description: String, $updatedAt: String, $like: Int, $createdAt: String, $type: String, $title: String, $codeAddress: String, $deployedNum: Int, $id: ID!, $detailDescription: String, $detailAttention: String, $user_id: ID, $schema_id: ID, $detailImages: String, $img: String) {
  1656. createcase: create_case(description: $description updatedAt: $updatedAt like: $like createdAt: $createdAt type: $type title: $title codeAddress: $codeAddress deployedNum: $deployedNum id: $id detailDescription: $detailDescription detailAttention: $detailAttention user_id: $user_id schema_id: $schema_id detailImages: $detailImages img: $img) {
  1657. description
  1658. updatedAt
  1659. like
  1660. createdAt
  1661. type
  1662. title
  1663. codeAddress
  1664. deployedNum
  1665. id
  1666. detailDescription
  1667. detailAttention
  1668. user_id {
  1669. email
  1670. updatedAt
  1671. password
  1672. telephone
  1673. nickname
  1674. username
  1675. createdAt
  1676. openid
  1677. language
  1678. id
  1679. avatar
  1680. }
  1681. schema_id {
  1682. updatedAt
  1683. schemaState
  1684. authWrite
  1685. authReadObjects
  1686. createdAt
  1687. authRead
  1688. schemaName
  1689. reference
  1690. id
  1691. schemaData
  1692. authReadWrite
  1693. authWriteObjects
  1694. }
  1695. detailImages
  1696. img
  1697. }
  1698. }
  1699. mutation updatecase($description: String, $updatedAt: String, $like: Int, $createdAt: String, $type: String, $title: String, $codeAddress: String, $deployedNum: Int, $id: ID, $detailDescription: String, $detailAttention: String, $user_id: ID, $schema_id: ID, $detailImages: String, $img: String) {
  1700. updatecase: update_case(description: $description updatedAt: $updatedAt like: $like createdAt: $createdAt type: $type title: $title codeAddress: $codeAddress deployedNum: $deployedNum id: $id detailDescription: $detailDescription detailAttention: $detailAttention user_id: $user_id schema_id: $schema_id detailImages: $detailImages img: $img) {
  1701. description
  1702. updatedAt
  1703. like
  1704. createdAt
  1705. type
  1706. title
  1707. codeAddress
  1708. deployedNum
  1709. id
  1710. detailDescription
  1711. detailAttention
  1712. user_id {
  1713. email
  1714. updatedAt
  1715. password
  1716. telephone
  1717. nickname
  1718. username
  1719. createdAt
  1720. openid
  1721. language
  1722. id
  1723. avatar
  1724. }
  1725. schema_id {
  1726. updatedAt
  1727. schemaState
  1728. authWrite
  1729. authReadObjects
  1730. createdAt
  1731. authRead
  1732. schemaName
  1733. reference
  1734. id
  1735. schemaData
  1736. authReadWrite
  1737. authWriteObjects
  1738. }
  1739. detailImages
  1740. img
  1741. }
  1742. }
  1743. mutation deleteapiGWPath($apiGWName: String, $updatedAt: String, $apiGWGroup_id: ID, $createdAt: String, $deploy_id: ID, $serviceType: String, $id: ID, $apiGWPath: String, $user_id: ID, $timeout: Int, $apiGWDesc: String, $requestMethod: String, $apiId: String) {
  1744. deleteapiGWPath: delete_apiGWPath(apiGWName: $apiGWName updatedAt: $updatedAt apiGWGroup_id: $apiGWGroup_id createdAt: $createdAt deploy_id: $deploy_id serviceType: $serviceType id: $id apiGWPath: $apiGWPath user_id: $user_id timeout: $timeout apiGWDesc: $apiGWDesc requestMethod: $requestMethod apiId: $apiId)
  1745. }
  1746. mutation updatedatabase($id: ID, $user_id: ID, $dbName: String, $dbUsername: String, $dbPassword: String, $dbHost: String, $dbPort: String, $createdAt: String, $updatedAt: String) {
  1747. updatedatabase: update_database(id: $id user_id: $user_id dbName: $dbName dbUsername: $dbUsername dbPassword: $dbPassword dbHost: $dbHost dbPort: $dbPort createdAt: $createdAt updatedAt: $updatedAt) {
  1748. id
  1749. user_id {
  1750. email
  1751. updatedAt
  1752. password
  1753. telephone
  1754. nickname
  1755. username
  1756. createdAt
  1757. openid
  1758. language
  1759. id
  1760. avatar
  1761. }
  1762. dbName
  1763. dbUsername
  1764. dbPassword
  1765. dbHost
  1766. dbPort
  1767. createdAt
  1768. updatedAt
  1769. }
  1770. }
  1771. mutation createapiGWGroup($environmentName: String, $userStatus: String, $defaultDomain: String, $updatedAt: String, $userDomain: String, $groupName: String, $createdAt: String, $frontType: String, $region: String, $serviceId: String, $status: String, $id: ID!, $cloud_id: ID, $user_id: ID) {
  1772. createapiGWGroup: create_apiGWGroup(environmentName: $environmentName userStatus: $userStatus defaultDomain: $defaultDomain updatedAt: $updatedAt userDomain: $userDomain groupName: $groupName createdAt: $createdAt frontType: $frontType region: $region serviceId: $serviceId status: $status id: $id cloud_id: $cloud_id user_id: $user_id) {
  1773. environmentName
  1774. userStatus
  1775. defaultDomain
  1776. updatedAt
  1777. userDomain
  1778. groupName
  1779. createdAt
  1780. frontType
  1781. region
  1782. serviceId
  1783. status
  1784. id
  1785. cloud_id {
  1786. id
  1787. cloudName
  1788. secretId
  1789. secretKey
  1790. appId
  1791. createdAt
  1792. updatedAt
  1793. }
  1794. user_id {
  1795. email
  1796. updatedAt
  1797. password
  1798. telephone
  1799. nickname
  1800. username
  1801. createdAt
  1802. openid
  1803. language
  1804. id
  1805. avatar
  1806. }
  1807. }
  1808. }
  1809. mutation deletedatabase($id: ID, $user_id: ID, $dbName: String, $dbUsername: String, $dbPassword: String, $dbHost: String, $dbPort: String, $createdAt: String, $updatedAt: String) {
  1810. deletedatabase: delete_database(id: $id user_id: $user_id dbName: $dbName dbUsername: $dbUsername dbPassword: $dbPassword dbHost: $dbHost dbPort: $dbPort createdAt: $createdAt updatedAt: $updatedAt)
  1811. }
  1812. mutation deletecase($description: String, $updatedAt: String, $like: Int, $createdAt: String, $type: String, $title: String, $codeAddress: String, $deployedNum: Int, $id: ID, $detailDescription: String, $detailAttention: String, $user_id: ID, $schema_id: ID, $img: String) {
  1813. deletecase: delete_case(description: $description updatedAt: $updatedAt like: $like createdAt: $createdAt type: $type title: $title codeAddress: $codeAddress deployedNum: $deployedNum id: $id detailDescription: $detailDescription detailAttention: $detailAttention user_id: $user_id schema_id: $schema_id img: $img)
  1814. }
  1815. mutation deletedeploy($description: String, $updatedAt: String, $cosBucketName: String, $memorySize: Int, $fc_id: ID, $createdAt: String, $subnetId: String, $cosObjectName: String, $region: String, $vpcId: String, $cosBucketRegion: String, $id: ID, $cloud_id: ID, $user_id: ID, $serviceName: String, $timeout: Int, $handler: String, $functionName: String) {
  1816. deletedeploy: delete_deploy(description: $description updatedAt: $updatedAt cosBucketName: $cosBucketName memorySize: $memorySize fc_id: $fc_id createdAt: $createdAt subnetId: $subnetId cosObjectName: $cosObjectName region: $region vpcId: $vpcId cosBucketRegion: $cosBucketRegion id: $id cloud_id: $cloud_id user_id: $user_id serviceName: $serviceName timeout: $timeout handler: $handler functionName: $functionName)
  1817. }
  1818. mutation createdatabase($id: ID!, $user_id: ID, $dbName: String, $dbUsername: String, $dbPassword: String, $dbHost: String, $dbPort: String, $createdAt: String, $updatedAt: String) {
  1819. createdatabase: create_database(id: $id user_id: $user_id dbName: $dbName dbUsername: $dbUsername dbPassword: $dbPassword dbHost: $dbHost dbPort: $dbPort createdAt: $createdAt updatedAt: $updatedAt) {
  1820. id
  1821. user_id {
  1822. email
  1823. updatedAt
  1824. password
  1825. telephone
  1826. nickname
  1827. username
  1828. createdAt
  1829. openid
  1830. language
  1831. id
  1832. avatar
  1833. }
  1834. dbName
  1835. dbUsername
  1836. dbPassword
  1837. dbHost
  1838. dbPort
  1839. createdAt
  1840. updatedAt
  1841. }
  1842. }
  1843. mutation deleteorder($id: ID, $user_id: ID, $createdAt: String, $updatedAt: String) {
  1844. deleteorder: delete_order(id: $id user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt)
  1845. }
  1846. mutation deletenotification($id: ID, $user_id: ID, $type: String, $webhook: String, $name: String) {
  1847. deletenotification: delete_notification(id: $id user_id: $user_id type: $type webhook: $webhook name: $name)
  1848. }
  1849. mutation deleteschema($updatedAt: String, $schemaState: String, $authWrite: String, $createdAt: String, $authRead: String, $schemaName: String, $reference: String, $id: ID, $schemaData: String, $authReadWrite: String, $user_id: ID) {
  1850. deleteschema: delete_schema(updatedAt: $updatedAt schemaState: $schemaState authWrite: $authWrite createdAt: $createdAt authRead: $authRead schemaName: $schemaName reference: $reference id: $id schemaData: $schemaData authReadWrite: $authReadWrite user_id: $user_id)
  1851. }
  1852. mutation deleteuser($email: String, $updatedAt: String, $password: String, $telephone: String, $nickname: String, $username: String, $createdAt: String, $openid: String, $language: String, $id: ID, $avatar: String) {
  1853. deleteuser: delete_user(email: $email updatedAt: $updatedAt password: $password telephone: $telephone nickname: $nickname username: $username createdAt: $createdAt openid: $openid language: $language id: $id avatar: $avatar)
  1854. }
  1855. mutation createorder($id: ID!, $user_id: ID, $createdAt: String, $updatedAt: String) {
  1856. createorder: create_order(id: $id user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt) {
  1857. id
  1858. user_id {
  1859. email
  1860. updatedAt
  1861. password
  1862. telephone
  1863. nickname
  1864. username
  1865. createdAt
  1866. openid
  1867. language
  1868. id
  1869. avatar
  1870. }
  1871. createdAt
  1872. updatedAt
  1873. }
  1874. }
  1875. mutation updateapiGWPath($apiGWName: String, $updatedAt: String, $apiGWGroup_id: ID, $createdAt: String, $deploy_id: ID, $serviceType: String, $id: ID, $apiGWPath: String, $user_id: ID, $timeout: Int, $apiGWDesc: String, $requestMethod: String, $apiId: String) {
  1876. updateapiGWPath: update_apiGWPath(apiGWName: $apiGWName updatedAt: $updatedAt apiGWGroup_id: $apiGWGroup_id createdAt: $createdAt deploy_id: $deploy_id serviceType: $serviceType id: $id apiGWPath: $apiGWPath user_id: $user_id timeout: $timeout apiGWDesc: $apiGWDesc requestMethod: $requestMethod apiId: $apiId) {
  1877. apiGWName
  1878. updatedAt
  1879. apiGWGroup_id {
  1880. environmentName
  1881. userStatus
  1882. defaultDomain
  1883. updatedAt
  1884. userDomain
  1885. groupName
  1886. createdAt
  1887. frontType
  1888. region
  1889. serviceId
  1890. status
  1891. id
  1892. }
  1893. createdAt
  1894. deploy_id {
  1895. description
  1896. updatedAt
  1897. cosBucketName
  1898. memorySize
  1899. createdAt
  1900. subnetId
  1901. cosObjectName
  1902. region
  1903. vpcId
  1904. cosBucketRegion
  1905. id
  1906. serviceName
  1907. timeout
  1908. handler
  1909. functionName
  1910. }
  1911. serviceType
  1912. id
  1913. apiGWPath
  1914. user_id {
  1915. email
  1916. updatedAt
  1917. password
  1918. telephone
  1919. nickname
  1920. username
  1921. createdAt
  1922. openid
  1923. language
  1924. id
  1925. avatar
  1926. }
  1927. timeout
  1928. apiGWDesc
  1929. requestMethod
  1930. apiId
  1931. }
  1932. }
  1933. mutation createdeploy($description: String, $updatedAt: String, $cosBucketName: String, $memorySize: Int, $fc_id: ID, $createdAt: String, $subnetId: String, $cosObjectName: String, $region: String, $vpcId: String, $cosBucketRegion: String, $id: ID!, $cloud_id: ID, $user_id: ID, $serviceName: String, $timeout: Int, $handler: String, $functionName: String) {
  1934. createdeploy: create_deploy(description: $description updatedAt: $updatedAt cosBucketName: $cosBucketName memorySize: $memorySize fc_id: $fc_id createdAt: $createdAt subnetId: $subnetId cosObjectName: $cosObjectName region: $region vpcId: $vpcId cosBucketRegion: $cosBucketRegion id: $id cloud_id: $cloud_id user_id: $user_id serviceName: $serviceName timeout: $timeout handler: $handler functionName: $functionName) {
  1935. description
  1936. updatedAt
  1937. cosBucketName
  1938. memorySize
  1939. fc_id {
  1940. id
  1941. fcType
  1942. createdAt
  1943. updatedAt
  1944. }
  1945. createdAt
  1946. subnetId
  1947. cosObjectName
  1948. region
  1949. vpcId
  1950. cosBucketRegion
  1951. id
  1952. cloud_id {
  1953. id
  1954. cloudName
  1955. secretId
  1956. secretKey
  1957. appId
  1958. createdAt
  1959. updatedAt
  1960. }
  1961. user_id {
  1962. email
  1963. updatedAt
  1964. password
  1965. telephone
  1966. nickname
  1967. username
  1968. createdAt
  1969. openid
  1970. language
  1971. id
  1972. avatar
  1973. }
  1974. serviceName
  1975. timeout
  1976. handler
  1977. functionName
  1978. }
  1979. }
  1980. mutation createfc($id: ID!, $user_id: ID, $cloud_id: ID, $fcType: String, $schema_id: ID, $wxConfig_id: ID, $createdAt: String, $updatedAt: String) {
  1981. createfc: create_fc(id: $id user_id: $user_id cloud_id: $cloud_id fcType: $fcType schema_id: $schema_id wxConfig_id: $wxConfig_id createdAt: $createdAt updatedAt: $updatedAt) {
  1982. id
  1983. user_id {
  1984. email
  1985. updatedAt
  1986. password
  1987. telephone
  1988. nickname
  1989. username
  1990. createdAt
  1991. openid
  1992. language
  1993. id
  1994. avatar
  1995. }
  1996. cloud_id {
  1997. id
  1998. cloudName
  1999. secretId
  2000. secretKey
  2001. appId
  2002. createdAt
  2003. updatedAt
  2004. }
  2005. fcType
  2006. schema_id {
  2007. updatedAt
  2008. schemaState
  2009. authWrite
  2010. authReadObjects
  2011. createdAt
  2012. authRead
  2013. schemaName
  2014. reference
  2015. id
  2016. schemaData
  2017. authReadWrite
  2018. authWriteObjects
  2019. }
  2020. wxConfig_id {
  2021. updatedAt
  2022. mch_id
  2023. appName
  2024. notify_url
  2025. appSecret
  2026. createdAt
  2027. appID
  2028. token
  2029. spbill_create_ip
  2030. enter_url
  2031. id
  2032. pay_api_key
  2033. body
  2034. welcome_words
  2035. attach
  2036. }
  2037. createdAt
  2038. updatedAt
  2039. }
  2040. }
  2041. mutation updatecloud($id: ID, $user_id: ID, $cloudName: String, $secretId: String, $secretKey: String, $appId: String, $createdAt: String, $updatedAt: String) {
  2042. updatecloud: update_cloud(id: $id user_id: $user_id cloudName: $cloudName secretId: $secretId secretKey: $secretKey appId: $appId createdAt: $createdAt updatedAt: $updatedAt) {
  2043. id
  2044. user_id {
  2045. email
  2046. updatedAt
  2047. password
  2048. telephone
  2049. nickname
  2050. username
  2051. createdAt
  2052. openid
  2053. language
  2054. id
  2055. avatar
  2056. }
  2057. cloudName
  2058. secretId
  2059. secretKey
  2060. appId
  2061. createdAt
  2062. updatedAt
  2063. }
  2064. }
  2065. mutation createnotification($id: ID!, $user_id: ID, $type: String, $webhook: String, $name: String) {
  2066. createnotification: create_notification(id: $id user_id: $user_id type: $type webhook: $webhook name: $name) {
  2067. id
  2068. user_id {
  2069. email
  2070. updatedAt
  2071. password
  2072. telephone
  2073. nickname
  2074. username
  2075. createdAt
  2076. openid
  2077. language
  2078. id
  2079. avatar
  2080. }
  2081. type
  2082. webhook
  2083. name
  2084. }
  2085. }
  2086. mutation deleteticket($updatedAt: String, $repliedBy: ID, $content: String, $repliedAt: String, $createdAt: String, $type: String, $title: String, $status: String, $id: ID, $user_id: ID) {
  2087. deleteticket: delete_ticket(updatedAt: $updatedAt repliedBy: $repliedBy content: $content repliedAt: $repliedAt createdAt: $createdAt type: $type title: $title status: $status id: $id user_id: $user_id)
  2088. }
  2089. mutation updatenotification($id: ID, $user_id: ID, $type: String, $webhook: String, $name: String) {
  2090. updatenotification: update_notification(id: $id user_id: $user_id type: $type webhook: $webhook name: $name) {
  2091. id
  2092. user_id {
  2093. email
  2094. updatedAt
  2095. password
  2096. telephone
  2097. nickname
  2098. username
  2099. createdAt
  2100. openid
  2101. language
  2102. id
  2103. avatar
  2104. }
  2105. type
  2106. webhook
  2107. name
  2108. }
  2109. }
  2110. mutation updateorder($id: ID, $user_id: ID, $createdAt: String, $updatedAt: String) {
  2111. updateorder: update_order(id: $id user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt) {
  2112. id
  2113. user_id {
  2114. email
  2115. updatedAt
  2116. password
  2117. telephone
  2118. nickname
  2119. username
  2120. createdAt
  2121. openid
  2122. language
  2123. id
  2124. avatar
  2125. }
  2126. createdAt
  2127. updatedAt
  2128. }
  2129. }
  2130. mutation deletecloud($id: ID, $user_id: ID, $cloudName: String, $secretId: String, $secretKey: String, $appId: String, $createdAt: String, $updatedAt: String) {
  2131. deletecloud: delete_cloud(id: $id user_id: $user_id cloudName: $cloudName secretId: $secretId secretKey: $secretKey appId: $appId createdAt: $createdAt updatedAt: $updatedAt)
  2132. }
  2133. mutation deletewxConfig($updatedAt: String, $mch_id: String, $appName: String, $notify_url: String, $appSecret: String, $createdAt: String, $appID: String, $token: String, $spbill_create_ip: String, $enter_url: String, $id: ID, $pay_api_key: String, $user_id: ID, $body: String, $welcome_words: String, $attach: String) {
  2134. deletewxConfig: delete_wxConfig(updatedAt: $updatedAt mch_id: $mch_id appName: $appName notify_url: $notify_url appSecret: $appSecret createdAt: $createdAt appID: $appID token: $token spbill_create_ip: $spbill_create_ip enter_url: $enter_url id: $id pay_api_key: $pay_api_key user_id: $user_id body: $body welcome_words: $welcome_words attach: $attach)
  2135. }
  2136. mutation updatedeploy($description: String, $updatedAt: String, $cosBucketName: String, $memorySize: Int, $fc_id: ID, $createdAt: String, $subnetId: String, $cosObjectName: String, $region: String, $vpcId: String, $cosBucketRegion: String, $id: ID, $cloud_id: ID, $user_id: ID, $serviceName: String, $timeout: Int, $handler: String, $functionName: String) {
  2137. updatedeploy: update_deploy(description: $description updatedAt: $updatedAt cosBucketName: $cosBucketName memorySize: $memorySize fc_id: $fc_id createdAt: $createdAt subnetId: $subnetId cosObjectName: $cosObjectName region: $region vpcId: $vpcId cosBucketRegion: $cosBucketRegion id: $id cloud_id: $cloud_id user_id: $user_id serviceName: $serviceName timeout: $timeout handler: $handler functionName: $functionName) {
  2138. description
  2139. updatedAt
  2140. cosBucketName
  2141. memorySize
  2142. fc_id {
  2143. id
  2144. fcType
  2145. createdAt
  2146. updatedAt
  2147. }
  2148. createdAt
  2149. subnetId
  2150. cosObjectName
  2151. region
  2152. vpcId
  2153. cosBucketRegion
  2154. id
  2155. cloud_id {
  2156. id
  2157. cloudName
  2158. secretId
  2159. secretKey
  2160. appId
  2161. createdAt
  2162. updatedAt
  2163. }
  2164. user_id {
  2165. email
  2166. updatedAt
  2167. password
  2168. telephone
  2169. nickname
  2170. username
  2171. createdAt
  2172. openid
  2173. language
  2174. id
  2175. avatar
  2176. }
  2177. serviceName
  2178. timeout
  2179. handler
  2180. functionName
  2181. }
  2182. }
  2183. mutation updateapiGWGroup($environmentName: String, $userStatus: String, $defaultDomain: String, $updatedAt: String, $userDomain: String, $groupName: String, $createdAt: String, $frontType: String, $region: String, $serviceId: String, $status: String, $id: ID, $cloud_id: ID, $user_id: ID) {
  2184. updateapiGWGroup: update_apiGWGroup(environmentName: $environmentName userStatus: $userStatus defaultDomain: $defaultDomain updatedAt: $updatedAt userDomain: $userDomain groupName: $groupName createdAt: $createdAt frontType: $frontType region: $region serviceId: $serviceId status: $status id: $id cloud_id: $cloud_id user_id: $user_id) {
  2185. environmentName
  2186. userStatus
  2187. defaultDomain
  2188. updatedAt
  2189. userDomain
  2190. groupName
  2191. createdAt
  2192. frontType
  2193. region
  2194. serviceId
  2195. status
  2196. id
  2197. cloud_id {
  2198. id
  2199. cloudName
  2200. secretId
  2201. secretKey
  2202. appId
  2203. createdAt
  2204. updatedAt
  2205. }
  2206. user_id {
  2207. email
  2208. updatedAt
  2209. password
  2210. telephone
  2211. nickname
  2212. username
  2213. createdAt
  2214. openid
  2215. language
  2216. id
  2217. avatar
  2218. }
  2219. }
  2220. }
  2221. mutation updateticket($updatedAt: String, $repliedBy: ID, $content: String, $repliedAt: String, $createdAt: String, $type: String, $title: String, $status: String, $id: ID, $user_id: ID, $screenshot: String) {
  2222. updateticket: update_ticket(updatedAt: $updatedAt repliedBy: $repliedBy content: $content repliedAt: $repliedAt createdAt: $createdAt type: $type title: $title status: $status id: $id user_id: $user_id screenshot: $screenshot) {
  2223. updatedAt
  2224. repliedBy
  2225. content
  2226. repliedAt
  2227. createdAt
  2228. type
  2229. title
  2230. status
  2231. id
  2232. user_id {
  2233. email
  2234. updatedAt
  2235. password
  2236. telephone
  2237. nickname
  2238. username
  2239. createdAt
  2240. openid
  2241. language
  2242. id
  2243. avatar
  2244. }
  2245. screenshot
  2246. }
  2247. }
  2248. mutation createticket($updatedAt: String, $repliedBy: ID, $content: String, $repliedAt: String, $createdAt: String, $type: String, $title: String, $status: String, $id: ID!, $user_id: ID, $screenshot: String) {
  2249. createticket: create_ticket(updatedAt: $updatedAt repliedBy: $repliedBy content: $content repliedAt: $repliedAt createdAt: $createdAt type: $type title: $title status: $status id: $id user_id: $user_id screenshot: $screenshot) {
  2250. updatedAt
  2251. repliedBy
  2252. content
  2253. repliedAt
  2254. createdAt
  2255. type
  2256. title
  2257. status
  2258. id
  2259. user_id {
  2260. email
  2261. updatedAt
  2262. password
  2263. telephone
  2264. nickname
  2265. username
  2266. createdAt
  2267. openid
  2268. language
  2269. id
  2270. avatar
  2271. }
  2272. screenshot
  2273. }
  2274. }
  2275. mutation createwxConfig($updatedAt: String, $mch_id: String, $appName: String, $notify_url: String, $appSecret: String, $createdAt: String, $appID: String, $token: String, $spbill_create_ip: String, $enter_url: String, $id: ID!, $pay_api_key: String, $user_id: ID, $body: String, $welcome_words: String, $attach: String) {
  2276. createwxConfig: create_wxConfig(updatedAt: $updatedAt mch_id: $mch_id appName: $appName notify_url: $notify_url appSecret: $appSecret createdAt: $createdAt appID: $appID token: $token spbill_create_ip: $spbill_create_ip enter_url: $enter_url id: $id pay_api_key: $pay_api_key user_id: $user_id body: $body welcome_words: $welcome_words attach: $attach) {
  2277. updatedAt
  2278. mch_id
  2279. appName
  2280. notify_url
  2281. appSecret
  2282. createdAt
  2283. appID
  2284. token
  2285. spbill_create_ip
  2286. enter_url
  2287. id
  2288. pay_api_key
  2289. user_id {
  2290. email
  2291. updatedAt
  2292. password
  2293. telephone
  2294. nickname
  2295. username
  2296. createdAt
  2297. openid
  2298. language
  2299. id
  2300. avatar
  2301. }
  2302. body
  2303. welcome_words
  2304. attach
  2305. }
  2306. }