|
|
@@ -0,0 +1,2450 @@
|
|
|
+query userbyid($id: ID) {
|
|
|
+ userbyid: user_by_id(id: $id) {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query ticketbyid($id: ID) {
|
|
|
+ ticketbyid: ticket_by_id(id: $id) {
|
|
|
+ updatedAt
|
|
|
+ repliedBy
|
|
|
+ content
|
|
|
+ repliedAt
|
|
|
+ createdAt
|
|
|
+ type
|
|
|
+ title
|
|
|
+ status
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ screenshot
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query notificationbyprops($user_id: ID, $type: String, $webhook: String, $name: String) {
|
|
|
+ notificationbyprops: notification_by_props(user_id: $user_id type: $type webhook: $webhook name: $name) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ type
|
|
|
+ webhook
|
|
|
+ name
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ cosBucketName
|
|
|
+ memorySize
|
|
|
+ fc_id {
|
|
|
+ id
|
|
|
+
|
|
|
+
|
|
|
+ fcType
|
|
|
+
|
|
|
+
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ subnetId
|
|
|
+ cosObjectName
|
|
|
+ region
|
|
|
+ vpcId
|
|
|
+ cosBucketRegion
|
|
|
+ id
|
|
|
+ cloud_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ serviceName
|
|
|
+ timeout
|
|
|
+ handler
|
|
|
+ functionName
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query deploybyid($id: ID) {
|
|
|
+ deploybyid: deploy_by_id(id: $id) {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ cosBucketName
|
|
|
+ memorySize
|
|
|
+ fc_id {
|
|
|
+ id
|
|
|
+
|
|
|
+
|
|
|
+ fcType
|
|
|
+
|
|
|
+
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ subnetId
|
|
|
+ cosObjectName
|
|
|
+ region
|
|
|
+ vpcId
|
|
|
+ cosBucketRegion
|
|
|
+ id
|
|
|
+ cloud_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ serviceName
|
|
|
+ timeout
|
|
|
+ handler
|
|
|
+ functionName
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query databasebyid($id: ID) {
|
|
|
+ databasebyid: database_by_id(id: $id) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ dbName
|
|
|
+ dbUsername
|
|
|
+ dbPassword
|
|
|
+ dbHost
|
|
|
+ dbPort
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query notificationbyid($id: ID) {
|
|
|
+ notificationbyid: notification_by_id(id: $id) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ type
|
|
|
+ webhook
|
|
|
+ name
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query apiGWGroupbyid($id: ID) {
|
|
|
+ apiGWGroupbyid: apiGWGroup_by_id(id: $id) {
|
|
|
+ environmentName
|
|
|
+ userStatus
|
|
|
+ defaultDomain
|
|
|
+ updatedAt
|
|
|
+ userDomain
|
|
|
+ groupName
|
|
|
+ createdAt
|
|
|
+ frontType
|
|
|
+ region
|
|
|
+ serviceId
|
|
|
+ status
|
|
|
+ id
|
|
|
+ cloud_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query fcbyprops($user_id: ID, $cloud_id: ID, $fcType: String, $schema_id: ID, $wxConfig_id: ID, $createdAt: String, $updatedAt: String) {
|
|
|
+ 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) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ cloud_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ fcType
|
|
|
+ schema_id {
|
|
|
+ updatedAt
|
|
|
+ schemaState
|
|
|
+ authWrite
|
|
|
+ authReadObjects
|
|
|
+ createdAt
|
|
|
+ authRead
|
|
|
+ schemaName
|
|
|
+ reference
|
|
|
+ id
|
|
|
+ schemaData
|
|
|
+ authReadWrite
|
|
|
+
|
|
|
+ authWriteObjects
|
|
|
+ }
|
|
|
+ wxConfig_id {
|
|
|
+ updatedAt
|
|
|
+ mch_id
|
|
|
+ appName
|
|
|
+ notify_url
|
|
|
+ appSecret
|
|
|
+ createdAt
|
|
|
+ appID
|
|
|
+ token
|
|
|
+ spbill_create_ip
|
|
|
+ enter_url
|
|
|
+ id
|
|
|
+ pay_api_key
|
|
|
+
|
|
|
+ body
|
|
|
+ welcome_words
|
|
|
+ attach
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ environmentName
|
|
|
+ userStatus
|
|
|
+ defaultDomain
|
|
|
+ updatedAt
|
|
|
+ userDomain
|
|
|
+ groupName
|
|
|
+ createdAt
|
|
|
+ frontType
|
|
|
+ region
|
|
|
+ serviceId
|
|
|
+ status
|
|
|
+ id
|
|
|
+ cloud_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ apiGWName
|
|
|
+ updatedAt
|
|
|
+ apiGWGroup_id {
|
|
|
+ environmentName
|
|
|
+ userStatus
|
|
|
+ defaultDomain
|
|
|
+ updatedAt
|
|
|
+ userDomain
|
|
|
+ groupName
|
|
|
+ createdAt
|
|
|
+ frontType
|
|
|
+ region
|
|
|
+ serviceId
|
|
|
+ status
|
|
|
+ id
|
|
|
+
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ deploy_id {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ cosBucketName
|
|
|
+ memorySize
|
|
|
+
|
|
|
+ createdAt
|
|
|
+ subnetId
|
|
|
+ cosObjectName
|
|
|
+ region
|
|
|
+ vpcId
|
|
|
+ cosBucketRegion
|
|
|
+ id
|
|
|
+
|
|
|
+
|
|
|
+ serviceName
|
|
|
+ timeout
|
|
|
+ handler
|
|
|
+ functionName
|
|
|
+ }
|
|
|
+ serviceType
|
|
|
+ id
|
|
|
+ apiGWPath
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ timeout
|
|
|
+ apiGWDesc
|
|
|
+ requestMethod
|
|
|
+ apiId
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query schemabyprops($updatedAt: String, $schemaState: String, $authWrite: String, $createdAt: String, $authRead: String, $schemaName: String, $reference: String, $schemaData: String, $authReadWrite: String, $user_id: ID) {
|
|
|
+ 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) {
|
|
|
+ updatedAt
|
|
|
+ schemaState
|
|
|
+ authWrite
|
|
|
+ authReadObjects
|
|
|
+ createdAt
|
|
|
+ authRead
|
|
|
+ schemaName
|
|
|
+ reference
|
|
|
+ id
|
|
|
+ schemaData
|
|
|
+ authReadWrite
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ authWriteObjects
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query schemabyid($id: ID) {
|
|
|
+ schemabyid: schema_by_id(id: $id) {
|
|
|
+ updatedAt
|
|
|
+ schemaState
|
|
|
+ authWrite
|
|
|
+ authReadObjects
|
|
|
+ createdAt
|
|
|
+ authRead
|
|
|
+ schemaName
|
|
|
+ reference
|
|
|
+ id
|
|
|
+ schemaData
|
|
|
+ authReadWrite
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ authWriteObjects
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query wxConfigbyid($id: ID) {
|
|
|
+ wxConfigbyid: wxConfig_by_id(id: $id) {
|
|
|
+ updatedAt
|
|
|
+ mch_id
|
|
|
+ appName
|
|
|
+ notify_url
|
|
|
+ appSecret
|
|
|
+ createdAt
|
|
|
+ appID
|
|
|
+ token
|
|
|
+ spbill_create_ip
|
|
|
+ enter_url
|
|
|
+ id
|
|
|
+ pay_api_key
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ body
|
|
|
+ welcome_words
|
|
|
+ attach
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query projectbyid($id: ID) {
|
|
|
+ projectbyid: project_by_id(id: $id) {
|
|
|
+ updatedAt
|
|
|
+ database_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ dbName
|
|
|
+ dbUsername
|
|
|
+ dbPassword
|
|
|
+ dbHost
|
|
|
+ dbPort
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ apiGWGroup_id {
|
|
|
+ environmentName
|
|
|
+ userStatus
|
|
|
+ defaultDomain
|
|
|
+ updatedAt
|
|
|
+ userDomain
|
|
|
+ groupName
|
|
|
+ createdAt
|
|
|
+ frontType
|
|
|
+ region
|
|
|
+ serviceId
|
|
|
+ status
|
|
|
+ id
|
|
|
+
|
|
|
+ }
|
|
|
+ case_id {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ like
|
|
|
+ createdAt
|
|
|
+ type
|
|
|
+ title
|
|
|
+ codeAddress
|
|
|
+ deployedNum
|
|
|
+ id
|
|
|
+ detailDescription
|
|
|
+ detailAttention
|
|
|
+
|
|
|
+
|
|
|
+ detailImages
|
|
|
+ img
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ projectStatus
|
|
|
+ projectName
|
|
|
+ deploy_id {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ cosBucketName
|
|
|
+ memorySize
|
|
|
+
|
|
|
+ createdAt
|
|
|
+ subnetId
|
|
|
+ cosObjectName
|
|
|
+ region
|
|
|
+ vpcId
|
|
|
+ cosBucketRegion
|
|
|
+ id
|
|
|
+
|
|
|
+
|
|
|
+ serviceName
|
|
|
+ timeout
|
|
|
+ handler
|
|
|
+ functionName
|
|
|
+ }
|
|
|
+ notification_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ type
|
|
|
+ webhook
|
|
|
+ name
|
|
|
+ }
|
|
|
+ id
|
|
|
+ projectType
|
|
|
+ cloud_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ wxConfig_id {
|
|
|
+ updatedAt
|
|
|
+ mch_id
|
|
|
+ appName
|
|
|
+ notify_url
|
|
|
+ appSecret
|
|
|
+ createdAt
|
|
|
+ appID
|
|
|
+ token
|
|
|
+ spbill_create_ip
|
|
|
+ enter_url
|
|
|
+ id
|
|
|
+ pay_api_key
|
|
|
+
|
|
|
+ body
|
|
|
+ welcome_words
|
|
|
+ attach
|
|
|
+ }
|
|
|
+ schema_id {
|
|
|
+ updatedAt
|
|
|
+ schemaState
|
|
|
+ authWrite
|
|
|
+ authReadObjects
|
|
|
+ createdAt
|
|
|
+ authRead
|
|
|
+ schemaName
|
|
|
+ reference
|
|
|
+ id
|
|
|
+ schemaData
|
|
|
+ authReadWrite
|
|
|
+
|
|
|
+ authWriteObjects
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query casebyid($id: ID) {
|
|
|
+ casebyid: case_by_id(id: $id) {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ like
|
|
|
+ createdAt
|
|
|
+ type
|
|
|
+ title
|
|
|
+ codeAddress
|
|
|
+ deployedNum
|
|
|
+ id
|
|
|
+ detailDescription
|
|
|
+ detailAttention
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ schema_id {
|
|
|
+ updatedAt
|
|
|
+ schemaState
|
|
|
+ authWrite
|
|
|
+ authReadObjects
|
|
|
+ createdAt
|
|
|
+ authRead
|
|
|
+ schemaName
|
|
|
+ reference
|
|
|
+ id
|
|
|
+ schemaData
|
|
|
+ authReadWrite
|
|
|
+
|
|
|
+ authWriteObjects
|
|
|
+ }
|
|
|
+ detailImages
|
|
|
+ img
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query cloudbyid($id: ID) {
|
|
|
+ cloudbyid: cloud_by_id(id: $id) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ updatedAt
|
|
|
+ database_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ dbName
|
|
|
+ dbUsername
|
|
|
+ dbPassword
|
|
|
+ dbHost
|
|
|
+ dbPort
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ apiGWGroup_id {
|
|
|
+ environmentName
|
|
|
+ userStatus
|
|
|
+ defaultDomain
|
|
|
+ updatedAt
|
|
|
+ userDomain
|
|
|
+ groupName
|
|
|
+ createdAt
|
|
|
+ frontType
|
|
|
+ region
|
|
|
+ serviceId
|
|
|
+ status
|
|
|
+ id
|
|
|
+
|
|
|
+ }
|
|
|
+ case_id {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ like
|
|
|
+ createdAt
|
|
|
+ type
|
|
|
+ title
|
|
|
+ codeAddress
|
|
|
+ deployedNum
|
|
|
+ id
|
|
|
+ detailDescription
|
|
|
+ detailAttention
|
|
|
+
|
|
|
+
|
|
|
+ detailImages
|
|
|
+ img
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ projectStatus
|
|
|
+ projectName
|
|
|
+ deploy_id {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ cosBucketName
|
|
|
+ memorySize
|
|
|
+
|
|
|
+ createdAt
|
|
|
+ subnetId
|
|
|
+ cosObjectName
|
|
|
+ region
|
|
|
+ vpcId
|
|
|
+ cosBucketRegion
|
|
|
+ id
|
|
|
+
|
|
|
+
|
|
|
+ serviceName
|
|
|
+ timeout
|
|
|
+ handler
|
|
|
+ functionName
|
|
|
+ }
|
|
|
+ notification_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ type
|
|
|
+ webhook
|
|
|
+ name
|
|
|
+ }
|
|
|
+ id
|
|
|
+ projectType
|
|
|
+ cloud_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ wxConfig_id {
|
|
|
+ updatedAt
|
|
|
+ mch_id
|
|
|
+ appName
|
|
|
+ notify_url
|
|
|
+ appSecret
|
|
|
+ createdAt
|
|
|
+ appID
|
|
|
+ token
|
|
|
+ spbill_create_ip
|
|
|
+ enter_url
|
|
|
+ id
|
|
|
+ pay_api_key
|
|
|
+
|
|
|
+ body
|
|
|
+ welcome_words
|
|
|
+ attach
|
|
|
+ }
|
|
|
+ schema_id {
|
|
|
+ updatedAt
|
|
|
+ schemaState
|
|
|
+ authWrite
|
|
|
+ authReadObjects
|
|
|
+ createdAt
|
|
|
+ authRead
|
|
|
+ schemaName
|
|
|
+ reference
|
|
|
+ id
|
|
|
+ schemaData
|
|
|
+ authReadWrite
|
|
|
+
|
|
|
+ authWriteObjects
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ updatedAt
|
|
|
+ mch_id
|
|
|
+ appName
|
|
|
+ notify_url
|
|
|
+ appSecret
|
|
|
+ createdAt
|
|
|
+ appID
|
|
|
+ token
|
|
|
+ spbill_create_ip
|
|
|
+ enter_url
|
|
|
+ id
|
|
|
+ pay_api_key
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ body
|
|
|
+ welcome_words
|
|
|
+ attach
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query apiGWPathbyid($id: ID) {
|
|
|
+ apiGWPathbyid: apiGWPath_by_id(id: $id) {
|
|
|
+ apiGWName
|
|
|
+ updatedAt
|
|
|
+ apiGWGroup_id {
|
|
|
+ environmentName
|
|
|
+ userStatus
|
|
|
+ defaultDomain
|
|
|
+ updatedAt
|
|
|
+ userDomain
|
|
|
+ groupName
|
|
|
+ createdAt
|
|
|
+ frontType
|
|
|
+ region
|
|
|
+ serviceId
|
|
|
+ status
|
|
|
+ id
|
|
|
+
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ deploy_id {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ cosBucketName
|
|
|
+ memorySize
|
|
|
+
|
|
|
+ createdAt
|
|
|
+ subnetId
|
|
|
+ cosObjectName
|
|
|
+ region
|
|
|
+ vpcId
|
|
|
+ cosBucketRegion
|
|
|
+ id
|
|
|
+
|
|
|
+
|
|
|
+ serviceName
|
|
|
+ timeout
|
|
|
+ handler
|
|
|
+ functionName
|
|
|
+ }
|
|
|
+ serviceType
|
|
|
+ id
|
|
|
+ apiGWPath
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ timeout
|
|
|
+ apiGWDesc
|
|
|
+ requestMethod
|
|
|
+ apiId
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query orderbyid($id: ID) {
|
|
|
+ orderbyid: order_by_id(id: $id) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query cloudbyprops($user_id: ID, $cloudName: String, $secretId: String, $secretKey: String, $appId: String, $createdAt: String, $updatedAt: String) {
|
|
|
+ cloudbyprops: cloud_by_props(user_id: $user_id cloudName: $cloudName secretId: $secretId secretKey: $secretKey appId: $appId createdAt: $createdAt updatedAt: $updatedAt) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ like
|
|
|
+ createdAt
|
|
|
+ type
|
|
|
+ title
|
|
|
+ codeAddress
|
|
|
+ deployedNum
|
|
|
+ id
|
|
|
+ detailDescription
|
|
|
+ detailAttention
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ schema_id {
|
|
|
+ updatedAt
|
|
|
+ schemaState
|
|
|
+ authWrite
|
|
|
+ authReadObjects
|
|
|
+ createdAt
|
|
|
+ authRead
|
|
|
+ schemaName
|
|
|
+ reference
|
|
|
+ id
|
|
|
+ schemaData
|
|
|
+ authReadWrite
|
|
|
+
|
|
|
+ authWriteObjects
|
|
|
+ }
|
|
|
+ detailImages
|
|
|
+ img
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query ticketbyprops($updatedAt: String, $repliedBy: ID, $content: String, $repliedAt: String, $createdAt: String, $type: String, $title: String, $status: String, $user_id: ID) {
|
|
|
+ ticketbyprops: ticket_by_props(updatedAt: $updatedAt repliedBy: $repliedBy content: $content repliedAt: $repliedAt createdAt: $createdAt type: $type title: $title status: $status user_id: $user_id) {
|
|
|
+ updatedAt
|
|
|
+ repliedBy
|
|
|
+ content
|
|
|
+ repliedAt
|
|
|
+ createdAt
|
|
|
+ type
|
|
|
+ title
|
|
|
+ status
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ screenshot
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query userbyprops($email: String, $updatedAt: String, $password: String, $telephone: String, $nickname: String, $username: String, $createdAt: String, $openid: String, $language: String, $avatar: String) {
|
|
|
+ userbyprops: user_by_props(email: $email updatedAt: $updatedAt password: $password telephone: $telephone nickname: $nickname username: $username createdAt: $createdAt openid: $openid language: $language avatar: $avatar) {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query orderbyprops($user_id: ID, $createdAt: String, $updatedAt: String) {
|
|
|
+ orderbyprops: order_by_props(user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query fcbyid($id: ID) {
|
|
|
+ fcbyid: fc_by_id(id: $id) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ cloud_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ fcType
|
|
|
+ schema_id {
|
|
|
+ updatedAt
|
|
|
+ schemaState
|
|
|
+ authWrite
|
|
|
+ authReadObjects
|
|
|
+ createdAt
|
|
|
+ authRead
|
|
|
+ schemaName
|
|
|
+ reference
|
|
|
+ id
|
|
|
+ schemaData
|
|
|
+ authReadWrite
|
|
|
+
|
|
|
+ authWriteObjects
|
|
|
+ }
|
|
|
+ wxConfig_id {
|
|
|
+ updatedAt
|
|
|
+ mch_id
|
|
|
+ appName
|
|
|
+ notify_url
|
|
|
+ appSecret
|
|
|
+ createdAt
|
|
|
+ appID
|
|
|
+ token
|
|
|
+ spbill_create_ip
|
|
|
+ enter_url
|
|
|
+ id
|
|
|
+ pay_api_key
|
|
|
+
|
|
|
+ body
|
|
|
+ welcome_words
|
|
|
+ attach
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+query databasebyprops($user_id: ID, $dbName: String, $dbUsername: String, $dbPassword: String, $dbHost: String, $dbPort: String, $createdAt: String, $updatedAt: String) {
|
|
|
+ databasebyprops: database_by_props(user_id: $user_id dbName: $dbName dbUsername: $dbUsername dbPassword: $dbPassword dbHost: $dbHost dbPort: $dbPort createdAt: $createdAt updatedAt: $updatedAt) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ dbName
|
|
|
+ dbUsername
|
|
|
+ dbPassword
|
|
|
+ dbHost
|
|
|
+ dbPort
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+mutation createuser($email: String, $updatedAt: String, $password: String, $telephone: String, $nickname: String, $username: String, $createdAt: String, $openid: String, $language: String, $id: ID!, $avatar: String) {
|
|
|
+ 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) {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+mutation createcloud($id: ID!, $user_id: ID, $cloudName: String, $secretId: String, $secretKey: String, $appId: String, $createdAt: String, $updatedAt: String) {
|
|
|
+ createcloud: create_cloud(id: $id user_id: $user_id cloudName: $cloudName secretId: $secretId secretKey: $secretKey appId: $appId createdAt: $createdAt updatedAt: $updatedAt) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ updatedAt
|
|
|
+ schemaState
|
|
|
+ authWrite
|
|
|
+ authReadObjects
|
|
|
+ createdAt
|
|
|
+ authRead
|
|
|
+ schemaName
|
|
|
+ reference
|
|
|
+ id
|
|
|
+ schemaData
|
|
|
+ authReadWrite
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ authWriteObjects
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ apiGWName
|
|
|
+ updatedAt
|
|
|
+ apiGWGroup_id {
|
|
|
+ environmentName
|
|
|
+ userStatus
|
|
|
+ defaultDomain
|
|
|
+ updatedAt
|
|
|
+ userDomain
|
|
|
+ groupName
|
|
|
+ createdAt
|
|
|
+ frontType
|
|
|
+ region
|
|
|
+ serviceId
|
|
|
+ status
|
|
|
+ id
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ deploy_id {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ cosBucketName
|
|
|
+ memorySize
|
|
|
+ createdAt
|
|
|
+ subnetId
|
|
|
+ cosObjectName
|
|
|
+ region
|
|
|
+ vpcId
|
|
|
+ cosBucketRegion
|
|
|
+ id
|
|
|
+ serviceName
|
|
|
+ timeout
|
|
|
+ handler
|
|
|
+ functionName
|
|
|
+ }
|
|
|
+ serviceType
|
|
|
+ id
|
|
|
+ apiGWPath
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ timeout
|
|
|
+ apiGWDesc
|
|
|
+ requestMethod
|
|
|
+ apiId
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ updatedAt
|
|
|
+ database_id {
|
|
|
+ id
|
|
|
+ dbName
|
|
|
+ dbUsername
|
|
|
+ dbPassword
|
|
|
+ dbHost
|
|
|
+ dbPort
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ apiGWGroup_id {
|
|
|
+ environmentName
|
|
|
+ userStatus
|
|
|
+ defaultDomain
|
|
|
+ updatedAt
|
|
|
+ userDomain
|
|
|
+ groupName
|
|
|
+ createdAt
|
|
|
+ frontType
|
|
|
+ region
|
|
|
+ serviceId
|
|
|
+ status
|
|
|
+ id
|
|
|
+ }
|
|
|
+ case_id {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ like
|
|
|
+ createdAt
|
|
|
+ type
|
|
|
+ title
|
|
|
+ codeAddress
|
|
|
+ deployedNum
|
|
|
+ id
|
|
|
+ detailDescription
|
|
|
+ detailAttention
|
|
|
+ detailImages
|
|
|
+ img
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ projectStatus
|
|
|
+ projectName
|
|
|
+ deploy_id {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ cosBucketName
|
|
|
+ memorySize
|
|
|
+ createdAt
|
|
|
+ subnetId
|
|
|
+ cosObjectName
|
|
|
+ region
|
|
|
+ vpcId
|
|
|
+ cosBucketRegion
|
|
|
+ id
|
|
|
+ serviceName
|
|
|
+ timeout
|
|
|
+ handler
|
|
|
+ functionName
|
|
|
+ }
|
|
|
+ notification_id {
|
|
|
+ id
|
|
|
+ type
|
|
|
+ webhook
|
|
|
+ name
|
|
|
+ }
|
|
|
+ id
|
|
|
+ projectType
|
|
|
+ cloud_id {
|
|
|
+ id
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ wxConfig_id {
|
|
|
+ updatedAt
|
|
|
+ mch_id
|
|
|
+ appName
|
|
|
+ notify_url
|
|
|
+ appSecret
|
|
|
+ createdAt
|
|
|
+ appID
|
|
|
+ token
|
|
|
+ spbill_create_ip
|
|
|
+ enter_url
|
|
|
+ id
|
|
|
+ pay_api_key
|
|
|
+ body
|
|
|
+ welcome_words
|
|
|
+ attach
|
|
|
+ }
|
|
|
+ schema_id {
|
|
|
+ updatedAt
|
|
|
+ schemaState
|
|
|
+ authWrite
|
|
|
+ authReadObjects
|
|
|
+ createdAt
|
|
|
+ authRead
|
|
|
+ schemaName
|
|
|
+ reference
|
|
|
+ id
|
|
|
+ schemaData
|
|
|
+ authReadWrite
|
|
|
+ authWriteObjects
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ updatedAt
|
|
|
+ mch_id
|
|
|
+ appName
|
|
|
+ notify_url
|
|
|
+ appSecret
|
|
|
+ createdAt
|
|
|
+ appID
|
|
|
+ token
|
|
|
+ spbill_create_ip
|
|
|
+ enter_url
|
|
|
+ id
|
|
|
+ pay_api_key
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ body
|
|
|
+ welcome_words
|
|
|
+ attach
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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)
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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)
|
|
|
+}
|
|
|
+
|
|
|
+mutation deletefc($id: ID, $user_id: ID, $cloud_id: ID, $fcType: String, $schema_id: ID, $wxConfig_id: ID, $createdAt: String, $updatedAt: String) {
|
|
|
+ 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)
|
|
|
+}
|
|
|
+
|
|
|
+mutation updateuser($email: String, $updatedAt: String, $password: String, $telephone: String, $nickname: String, $username: String, $createdAt: String, $openid: String, $language: String, $id: ID, $avatar: String) {
|
|
|
+ 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) {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ updatedAt
|
|
|
+ database_id {
|
|
|
+ id
|
|
|
+ dbName
|
|
|
+ dbUsername
|
|
|
+ dbPassword
|
|
|
+ dbHost
|
|
|
+ dbPort
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ apiGWGroup_id {
|
|
|
+ environmentName
|
|
|
+ userStatus
|
|
|
+ defaultDomain
|
|
|
+ updatedAt
|
|
|
+ userDomain
|
|
|
+ groupName
|
|
|
+ createdAt
|
|
|
+ frontType
|
|
|
+ region
|
|
|
+ serviceId
|
|
|
+ status
|
|
|
+ id
|
|
|
+
|
|
|
+ }
|
|
|
+ case_id {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ like
|
|
|
+ createdAt
|
|
|
+ type
|
|
|
+ title
|
|
|
+ codeAddress
|
|
|
+ deployedNum
|
|
|
+ id
|
|
|
+ detailDescription
|
|
|
+ detailAttention
|
|
|
+ detailImages
|
|
|
+ img
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ projectStatus
|
|
|
+ projectName
|
|
|
+ deploy_id {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ cosBucketName
|
|
|
+ memorySize
|
|
|
+ createdAt
|
|
|
+ subnetId
|
|
|
+ cosObjectName
|
|
|
+ region
|
|
|
+ vpcId
|
|
|
+ cosBucketRegion
|
|
|
+ id
|
|
|
+ serviceName
|
|
|
+ timeout
|
|
|
+ handler
|
|
|
+ functionName
|
|
|
+ }
|
|
|
+ notification_id {
|
|
|
+ id
|
|
|
+ type
|
|
|
+ webhook
|
|
|
+ name
|
|
|
+ }
|
|
|
+ id
|
|
|
+ projectType
|
|
|
+ cloud_id {
|
|
|
+ id
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ wxConfig_id {
|
|
|
+ updatedAt
|
|
|
+ mch_id
|
|
|
+ appName
|
|
|
+ notify_url
|
|
|
+ appSecret
|
|
|
+ createdAt
|
|
|
+ appID
|
|
|
+ token
|
|
|
+ spbill_create_ip
|
|
|
+ enter_url
|
|
|
+ id
|
|
|
+ pay_api_key
|
|
|
+ body
|
|
|
+ welcome_words
|
|
|
+ attach
|
|
|
+ }
|
|
|
+ schema_id {
|
|
|
+ updatedAt
|
|
|
+ schemaState
|
|
|
+ authWrite
|
|
|
+ authReadObjects
|
|
|
+ createdAt
|
|
|
+ authRead
|
|
|
+ schemaName
|
|
|
+ reference
|
|
|
+ id
|
|
|
+ schemaData
|
|
|
+ authReadWrite
|
|
|
+ authWriteObjects
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+mutation updatefc($id: ID, $user_id: ID, $cloud_id: ID, $fcType: String, $schema_id: ID, $wxConfig_id: ID, $createdAt: String, $updatedAt: String) {
|
|
|
+ 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) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ cloud_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ fcType
|
|
|
+ schema_id {
|
|
|
+ updatedAt
|
|
|
+ schemaState
|
|
|
+ authWrite
|
|
|
+ authReadObjects
|
|
|
+ createdAt
|
|
|
+ authRead
|
|
|
+ schemaName
|
|
|
+ reference
|
|
|
+ id
|
|
|
+ schemaData
|
|
|
+ authReadWrite
|
|
|
+
|
|
|
+ authWriteObjects
|
|
|
+ }
|
|
|
+ wxConfig_id {
|
|
|
+ updatedAt
|
|
|
+ mch_id
|
|
|
+ appName
|
|
|
+ notify_url
|
|
|
+ appSecret
|
|
|
+ createdAt
|
|
|
+ appID
|
|
|
+ token
|
|
|
+ spbill_create_ip
|
|
|
+ enter_url
|
|
|
+ id
|
|
|
+ pay_api_key
|
|
|
+
|
|
|
+ body
|
|
|
+ welcome_words
|
|
|
+ attach
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ updatedAt
|
|
|
+ schemaState
|
|
|
+ authWrite
|
|
|
+ authReadObjects
|
|
|
+ createdAt
|
|
|
+ authRead
|
|
|
+ schemaName
|
|
|
+ reference
|
|
|
+ id
|
|
|
+ schemaData
|
|
|
+ authReadWrite
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ authWriteObjects
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ like
|
|
|
+ createdAt
|
|
|
+ type
|
|
|
+ title
|
|
|
+ codeAddress
|
|
|
+ deployedNum
|
|
|
+ id
|
|
|
+ detailDescription
|
|
|
+ detailAttention
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ schema_id {
|
|
|
+ updatedAt
|
|
|
+ schemaState
|
|
|
+ authWrite
|
|
|
+ authReadObjects
|
|
|
+ createdAt
|
|
|
+ authRead
|
|
|
+ schemaName
|
|
|
+ reference
|
|
|
+ id
|
|
|
+ schemaData
|
|
|
+ authReadWrite
|
|
|
+
|
|
|
+ authWriteObjects
|
|
|
+ }
|
|
|
+ detailImages
|
|
|
+ img
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ like
|
|
|
+ createdAt
|
|
|
+ type
|
|
|
+ title
|
|
|
+ codeAddress
|
|
|
+ deployedNum
|
|
|
+ id
|
|
|
+ detailDescription
|
|
|
+ detailAttention
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ schema_id {
|
|
|
+ updatedAt
|
|
|
+ schemaState
|
|
|
+ authWrite
|
|
|
+ authReadObjects
|
|
|
+ createdAt
|
|
|
+ authRead
|
|
|
+ schemaName
|
|
|
+ reference
|
|
|
+ id
|
|
|
+ schemaData
|
|
|
+ authReadWrite
|
|
|
+
|
|
|
+ authWriteObjects
|
|
|
+ }
|
|
|
+ detailImages
|
|
|
+ img
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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)
|
|
|
+}
|
|
|
+
|
|
|
+mutation updatedatabase($id: ID, $user_id: ID, $dbName: String, $dbUsername: String, $dbPassword: String, $dbHost: String, $dbPort: String, $createdAt: String, $updatedAt: String) {
|
|
|
+ updatedatabase: update_database(id: $id user_id: $user_id dbName: $dbName dbUsername: $dbUsername dbPassword: $dbPassword dbHost: $dbHost dbPort: $dbPort createdAt: $createdAt updatedAt: $updatedAt) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ dbName
|
|
|
+ dbUsername
|
|
|
+ dbPassword
|
|
|
+ dbHost
|
|
|
+ dbPort
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ environmentName
|
|
|
+ userStatus
|
|
|
+ defaultDomain
|
|
|
+ updatedAt
|
|
|
+ userDomain
|
|
|
+ groupName
|
|
|
+ createdAt
|
|
|
+ frontType
|
|
|
+ region
|
|
|
+ serviceId
|
|
|
+ status
|
|
|
+ id
|
|
|
+ cloud_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+mutation deletedatabase($id: ID, $user_id: ID, $dbName: String, $dbUsername: String, $dbPassword: String, $dbHost: String, $dbPort: String, $createdAt: String, $updatedAt: String) {
|
|
|
+ deletedatabase: delete_database(id: $id user_id: $user_id dbName: $dbName dbUsername: $dbUsername dbPassword: $dbPassword dbHost: $dbHost dbPort: $dbPort createdAt: $createdAt updatedAt: $updatedAt)
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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)
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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)
|
|
|
+}
|
|
|
+
|
|
|
+mutation createdatabase($id: ID!, $user_id: ID, $dbName: String, $dbUsername: String, $dbPassword: String, $dbHost: String, $dbPort: String, $createdAt: String, $updatedAt: String) {
|
|
|
+ createdatabase: create_database(id: $id user_id: $user_id dbName: $dbName dbUsername: $dbUsername dbPassword: $dbPassword dbHost: $dbHost dbPort: $dbPort createdAt: $createdAt updatedAt: $updatedAt) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ dbName
|
|
|
+ dbUsername
|
|
|
+ dbPassword
|
|
|
+ dbHost
|
|
|
+ dbPort
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+mutation deleteorder($id: ID, $user_id: ID, $createdAt: String, $updatedAt: String) {
|
|
|
+ deleteorder: delete_order(id: $id user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt)
|
|
|
+}
|
|
|
+
|
|
|
+mutation deletenotification($id: ID, $user_id: ID, $type: String, $webhook: String, $name: String) {
|
|
|
+ deletenotification: delete_notification(id: $id user_id: $user_id type: $type webhook: $webhook name: $name)
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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)
|
|
|
+}
|
|
|
+
|
|
|
+mutation deleteuser($email: String, $updatedAt: String, $password: String, $telephone: String, $nickname: String, $username: String, $createdAt: String, $openid: String, $language: String, $id: ID, $avatar: String) {
|
|
|
+ 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)
|
|
|
+}
|
|
|
+
|
|
|
+mutation createorder($id: ID!, $user_id: ID, $createdAt: String, $updatedAt: String) {
|
|
|
+ createorder: create_order(id: $id user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ apiGWName
|
|
|
+ updatedAt
|
|
|
+ apiGWGroup_id {
|
|
|
+ environmentName
|
|
|
+ userStatus
|
|
|
+ defaultDomain
|
|
|
+ updatedAt
|
|
|
+ userDomain
|
|
|
+ groupName
|
|
|
+ createdAt
|
|
|
+ frontType
|
|
|
+ region
|
|
|
+ serviceId
|
|
|
+ status
|
|
|
+ id
|
|
|
+
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ deploy_id {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ cosBucketName
|
|
|
+ memorySize
|
|
|
+
|
|
|
+ createdAt
|
|
|
+ subnetId
|
|
|
+ cosObjectName
|
|
|
+ region
|
|
|
+ vpcId
|
|
|
+ cosBucketRegion
|
|
|
+ id
|
|
|
+
|
|
|
+
|
|
|
+ serviceName
|
|
|
+ timeout
|
|
|
+ handler
|
|
|
+ functionName
|
|
|
+ }
|
|
|
+ serviceType
|
|
|
+ id
|
|
|
+ apiGWPath
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ timeout
|
|
|
+ apiGWDesc
|
|
|
+ requestMethod
|
|
|
+ apiId
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ cosBucketName
|
|
|
+ memorySize
|
|
|
+ fc_id {
|
|
|
+ id
|
|
|
+
|
|
|
+
|
|
|
+ fcType
|
|
|
+
|
|
|
+
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ subnetId
|
|
|
+ cosObjectName
|
|
|
+ region
|
|
|
+ vpcId
|
|
|
+ cosBucketRegion
|
|
|
+ id
|
|
|
+ cloud_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ serviceName
|
|
|
+ timeout
|
|
|
+ handler
|
|
|
+ functionName
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+mutation createfc($id: ID!, $user_id: ID, $cloud_id: ID, $fcType: String, $schema_id: ID, $wxConfig_id: ID, $createdAt: String, $updatedAt: String) {
|
|
|
+ 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) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ cloud_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ fcType
|
|
|
+ schema_id {
|
|
|
+ updatedAt
|
|
|
+ schemaState
|
|
|
+ authWrite
|
|
|
+ authReadObjects
|
|
|
+ createdAt
|
|
|
+ authRead
|
|
|
+ schemaName
|
|
|
+ reference
|
|
|
+ id
|
|
|
+ schemaData
|
|
|
+ authReadWrite
|
|
|
+
|
|
|
+ authWriteObjects
|
|
|
+ }
|
|
|
+ wxConfig_id {
|
|
|
+ updatedAt
|
|
|
+ mch_id
|
|
|
+ appName
|
|
|
+ notify_url
|
|
|
+ appSecret
|
|
|
+ createdAt
|
|
|
+ appID
|
|
|
+ token
|
|
|
+ spbill_create_ip
|
|
|
+ enter_url
|
|
|
+ id
|
|
|
+ pay_api_key
|
|
|
+
|
|
|
+ body
|
|
|
+ welcome_words
|
|
|
+ attach
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+mutation updatecloud($id: ID, $user_id: ID, $cloudName: String, $secretId: String, $secretKey: String, $appId: String, $createdAt: String, $updatedAt: String) {
|
|
|
+ updatecloud: update_cloud(id: $id user_id: $user_id cloudName: $cloudName secretId: $secretId secretKey: $secretKey appId: $appId createdAt: $createdAt updatedAt: $updatedAt) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+mutation createnotification($id: ID!, $user_id: ID, $type: String, $webhook: String, $name: String) {
|
|
|
+ createnotification: create_notification(id: $id user_id: $user_id type: $type webhook: $webhook name: $name) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ type
|
|
|
+ webhook
|
|
|
+ name
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+mutation deleteticket($updatedAt: String, $repliedBy: ID, $content: String, $repliedAt: String, $createdAt: String, $type: String, $title: String, $status: String, $id: ID, $user_id: ID) {
|
|
|
+ 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)
|
|
|
+}
|
|
|
+
|
|
|
+mutation updatenotification($id: ID, $user_id: ID, $type: String, $webhook: String, $name: String) {
|
|
|
+ updatenotification: update_notification(id: $id user_id: $user_id type: $type webhook: $webhook name: $name) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ type
|
|
|
+ webhook
|
|
|
+ name
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+mutation updateorder($id: ID, $user_id: ID, $createdAt: String, $updatedAt: String) {
|
|
|
+ updateorder: update_order(id: $id user_id: $user_id createdAt: $createdAt updatedAt: $updatedAt) {
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+mutation deletecloud($id: ID, $user_id: ID, $cloudName: String, $secretId: String, $secretKey: String, $appId: String, $createdAt: String, $updatedAt: String) {
|
|
|
+ deletecloud: delete_cloud(id: $id user_id: $user_id cloudName: $cloudName secretId: $secretId secretKey: $secretKey appId: $appId createdAt: $createdAt updatedAt: $updatedAt)
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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)
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ description
|
|
|
+ updatedAt
|
|
|
+ cosBucketName
|
|
|
+ memorySize
|
|
|
+ fc_id {
|
|
|
+ id
|
|
|
+
|
|
|
+
|
|
|
+ fcType
|
|
|
+
|
|
|
+
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ createdAt
|
|
|
+ subnetId
|
|
|
+ cosObjectName
|
|
|
+ region
|
|
|
+ vpcId
|
|
|
+ cosBucketRegion
|
|
|
+ id
|
|
|
+ cloud_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ serviceName
|
|
|
+ timeout
|
|
|
+ handler
|
|
|
+ functionName
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ environmentName
|
|
|
+ userStatus
|
|
|
+ defaultDomain
|
|
|
+ updatedAt
|
|
|
+ userDomain
|
|
|
+ groupName
|
|
|
+ createdAt
|
|
|
+ frontType
|
|
|
+ region
|
|
|
+ serviceId
|
|
|
+ status
|
|
|
+ id
|
|
|
+ cloud_id {
|
|
|
+ id
|
|
|
+
|
|
|
+ cloudName
|
|
|
+ secretId
|
|
|
+ secretKey
|
|
|
+ appId
|
|
|
+ createdAt
|
|
|
+ updatedAt
|
|
|
+ }
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ updatedAt
|
|
|
+ repliedBy
|
|
|
+ content
|
|
|
+ repliedAt
|
|
|
+ createdAt
|
|
|
+ type
|
|
|
+ title
|
|
|
+ status
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ screenshot
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ updatedAt
|
|
|
+ repliedBy
|
|
|
+ content
|
|
|
+ repliedAt
|
|
|
+ createdAt
|
|
|
+ type
|
|
|
+ title
|
|
|
+ status
|
|
|
+ id
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ screenshot
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+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) {
|
|
|
+ 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) {
|
|
|
+ updatedAt
|
|
|
+ mch_id
|
|
|
+ appName
|
|
|
+ notify_url
|
|
|
+ appSecret
|
|
|
+ createdAt
|
|
|
+ appID
|
|
|
+ token
|
|
|
+ spbill_create_ip
|
|
|
+ enter_url
|
|
|
+ id
|
|
|
+ pay_api_key
|
|
|
+ user_id {
|
|
|
+ email
|
|
|
+ updatedAt
|
|
|
+ password
|
|
|
+ telephone
|
|
|
+ nickname
|
|
|
+ username
|
|
|
+ createdAt
|
|
|
+ openid
|
|
|
+ language
|
|
|
+ id
|
|
|
+ avatar
|
|
|
+ }
|
|
|
+ body
|
|
|
+ welcome_words
|
|
|
+ attach
|
|
|
+ }
|
|
|
+}
|