You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2019/02/12 03:25:39 UTC

[incubator-skywalking-query-protocol] branch master updated: Make style consistent.

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

wusheng 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 70334e4  Make style consistent.
70334e4 is described below

commit 70334e4bfd1e0c378c5479b74553f42a2cc71728
Author: Wu Sheng <wu...@foxmail.com>
AuthorDate: Tue Feb 12 11:25:30 2019 +0800

    Make style consistent.
---
 top-n-records.graphqls | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/top-n-records.graphqls b/top-n-records.graphqls
index dee17ac..4e9c4de 100644
--- a/top-n-records.graphqls
+++ b/top-n-records.graphqls
@@ -35,6 +35,10 @@ type TopNRecord {
     traceId: String
 }
 
+type TopNRecords {
+    records: [TopNRecord!]!
+}
+
 extend type Query {
-    getTopNRecords(condition: TopNRecordsCondition!): [TopNRecord!]!
+    getTopNRecords(condition: TopNRecordsCondition!): TopNRecords
 }