add more fields for hierachry (#130)
diff --git a/hierarchy.graphqls b/hierarchy.graphqls
index af99ae7..2ab7e6b 100644
--- a/hierarchy.graphqls
+++ b/hierarchy.graphqls
@@ -21,6 +21,7 @@
name: String!
# The related service's Layer name.
layer: String!
+ normal: Boolean!
}
type HierarchyRelatedInstance {
@@ -28,9 +29,14 @@
id: ID!
# The literal name of the #id. Instance Name.
name: String!
- # The related instance service's Layer name.
+ # Service id
+ serviceId: ID!
+ # The literal name of the #serviceId.
+ serviceName: String!
+ # The service's Layer name.
# Service could have multiple layers, this is the layer of the service that the instance belongs to.
layer: String!
+ normal: Boolean!
}
type HierarchyServiceRelation {