You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@skywalking.apache.org by ha...@apache.org on 2018/09/04 08:27:19 UTC

[incubator-skywalking-query-protocol] branch master updated: Update aggregation.graphqls

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

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


The following commit(s) were added to refs/heads/master by this push:
     new f22e7e5  Update aggregation.graphqls
f22e7e5 is described below

commit f22e7e5194f58c380b38e80694abf7e2e2ebc90b
Author: Gao Hongtao <ha...@gmail.com>
AuthorDate: Tue Sep 4 16:27:17 2018 +0800

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

diff --git a/aggregation.graphqls b/aggregation.graphqls
index 90ade73..e50cc6e 100644
--- a/aggregation.graphqls
+++ b/aggregation.graphqls
@@ -41,5 +41,5 @@ type TopNEntity {
 # All aggregation queries require backend or/and storage do aggregation in query time.
 extend type Query {
     # TopN is an aggregation query.
-    getTopN(condition: TopNCondition!): [TopNEntity!]!
-}
\ No newline at end of file
+    getTopN(condition: TopNCondition!, duration: Duration!): [TopNEntity!]!
+}