mrproliu commented on code in PR #122:
URL: 
https://github.com/apache/skywalking-query-protocol/pull/122#discussion_r1241577804


##########
ui-configuration.graphqls:
##########
@@ -23,11 +23,26 @@ type DashboardConfiguration {
     configuration: String!
 }
 
+type MenuItem {
+    # Display name
+    name: String!
+    # Showing icon
+    icon: String
+    # Link path
+    path: String!
+    # Whether to activate the menu or not
+    activate: Boolean!
+    # Sub menu items
+    subItems: [MenuItem!]!
+}
+
 extend type Query {
     # Read an existing UI template according to given id.
     getTemplate(id: String!): DashboardConfiguration
     # Read all configuration templates。
     getAllTemplates: [DashboardConfiguration!]!
+    # Read all menu items
+    getMenu: [DashboardMenu!]!

Review Comment:
   I have updated the name, please re-check.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to