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:22:07 UTC

[incubator-skywalking-query-protocol] branch master updated: Rename

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 df160af  Rename
df160af is described below

commit df160af6d61b59f8331efabda24ee5864b3527a7
Author: Wu Sheng <wu...@foxmail.com>
AuthorDate: Tue Feb 12 11:21:58 2019 +0800

    Rename
---
 top-n-records.graphqls | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/top-n-records.graphqls b/top-n-records.graphqls
index 63371c3..dee17ac 100644
--- a/top-n-records.graphqls
+++ b/top-n-records.graphqls
@@ -27,7 +27,7 @@ input TopNRecordsCondition {
     order: Order!
 }
 
-type TopNRecords {
+type TopNRecord {
     statement: String
     latency: Long!
     # Have value, Only if the record has the trace id.
@@ -36,5 +36,5 @@ type TopNRecords {
 }
 
 extend type Query {
-    getTopNRecords(condition: TopNRecordsCondition!): [TopNRecords!]!
+    getTopNRecords(condition: TopNRecordsCondition!): [TopNRecord!]!
 }