This is an automated email from the ASF dual-hosted git repository.

ywang pushed a commit to branch new
in repository 
https://gitbox.apache.org/repos/asf/incubator-skywalking-query-protocol.git

commit f5de93a2b0b5ab6dbf2a39d671560f285ab67675
Author: Gao Hongtao <hanahm...@gmail.com>
AuthorDate: Fri Sep 28 15:45:02 2018 +0800

    Update aggregation.graphqls
    
    Fix serviceId type
---
 aggregation.graphqls | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/aggregation.graphqls b/aggregation.graphqls
index e01846e..cd8ec02 100644
--- a/aggregation.graphqls
+++ b/aggregation.graphqls
@@ -26,7 +26,7 @@ extend type Query {
     # TopN is an aggregation query.
     getServiceTopN(name: String!, topN: Int!, duration: Duration!, order: 
Order!): [TopNEntity!]!
     getAllServiceInstanceTopN(name: String!, topN: Int!, duration: Duration!, 
order: Order!): [TopNEntity!]!
-    getServiceInstanceTopN(serviceId: Int!, name: String!, topN: Int!, 
duration: Duration!, order: Order!): [TopNEntity!]!
+    getServiceInstanceTopN(serviceId: ID!, name: String!, topN: Int!, 
duration: Duration!, order: Order!): [TopNEntity!]!
     getAllEndpointTopN(name: String!, topN: Int!, duration: Duration!, order: 
Order!): [TopNEntity!]!
-    getEndpointTopN(serviceId: Int!, name: String!, topN: Int!, duration: 
Duration!, order: Order!): [TopNEntity!]!
+    getEndpointTopN(serviceId: ID!, name: String!, topN: Int!, duration: 
Duration!, order: Order!): [TopNEntity!]!
 }

Reply via email to