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 2020/03/25 02:25:42 UTC

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

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/skywalking-query-protocol.git


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

commit f841ba14bdc2003342d96065cb8f3394dee28fcd
Author: 吴晟 Wu Sheng <wu...@foxmail.com>
AuthorDate: Wed Mar 25 10:25:36 2020 +0800

    Update metadata.graphqls
---
 metadata.graphqls | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/metadata.graphqls b/metadata.graphqls
index f7e9ec6..30881ea 100644
--- a/metadata.graphqls
+++ b/metadata.graphqls
@@ -84,9 +84,12 @@ extend type Query {
     # Consider there are huge numbers of endpoint,
     # must use endpoint owner's service id, keyword and limit filter to do query.
     searchEndpoint(keyword: String!, serviceId: ID!, limit: Int!): [Endpoint!]!
-    getEndpointInfo(endpointId: ID!): EndpointInfo
 
     # Database related meta info.
     getAllDatabases(duration: Duration!): [Database!]!
     getTimeInfo: TimeInfo
+    
+    # Deprecated
+    # Since 7.1.0
+    getEndpointInfo(endpointId: ID!): EndpointInfo
 }