This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-query-protocol.git
The following commit(s) were added to refs/heads/master by this push:
new 74f9bc7 Add disableTemplate service(#75)
74f9bc7 is described below
commit 74f9bc7ee6af33fc341331cf381c98847dcccfff
Author: Kai <[email protected]>
AuthorDate: Tue Mar 8 16:04:48 2022 +0800
Add disableTemplate service(#75)
---
ui-configuration.graphqls | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/ui-configuration.graphqls b/ui-configuration.graphqls
index e6f9882..bb0d3ff 100644
--- a/ui-configuration.graphqls
+++ b/ui-configuration.graphqls
@@ -25,7 +25,7 @@ type DashboardConfiguration {
extend type Query {
# Read an existing UI template according to given id.
- getTemplate(id: String!): DashboardConfiguration!
+ getTemplate(id: String!): DashboardConfiguration
# Read all configuration templates。
getAllTemplates: [DashboardConfiguration!]!
}
@@ -53,4 +53,5 @@ type TemplateChangeStatus {
extend type Mutation {
addTemplate(setting: NewDashboardSetting!): TemplateChangeStatus!
changeTemplate(setting: DashboardSetting!): TemplateChangeStatus!
+ disableTemplate(id: String!): TemplateChangeStatus!
}