You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by yw...@apache.org on 2019/02/16 10:24:44 UTC

[incubator-skywalking-query-protocol] 25/33: Update aggregation.graphqls

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 acffe1341e6bcefcdd3e2a6ebfb0c00db6e9af35
Author: 吴晟 Wu Sheng <wu...@foxmail.com>
AuthorDate: Tue Sep 25 10:23:18 2018 +0800

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

diff --git a/aggregation.graphqls b/aggregation.graphqls
index b059fd8..e01846e 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: Int!, 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: Int!, name: String!, topN: Int!, duration: Duration!, order: Order!): [TopNEntity!]!
 }