You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by pe...@apache.org on 2018/09/23 03:18:50 UTC

[incubator-skywalking-query-protocol] 01/01: Update metadata.graphqls

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

pengys pushed a commit to branch peng-yongsheng-patch-1
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking-query-protocol.git

commit 1f35bd5d9f3783d659040017c12f4ed3b7bd1a23
Author: 彭勇升 pengys <80...@qq.com>
AuthorDate: Sun Sep 23 11:18:45 2018 +0800

    Update metadata.graphqls
    
    Delete the parameter named duration in searchService method. Do not need duration to query service by exact-match.
---
 metadata.graphqls | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/metadata.graphqls b/metadata.graphqls
index cd94a53..e0774e7 100644
--- a/metadata.graphqls
+++ b/metadata.graphqls
@@ -51,7 +51,7 @@ extend type Query {
     # Service related meta info.
     getAllServices(duration: Duration!): [Service!]!
     searchServices(duration: Duration!, keyword: String!): [Service!]!
-    searchService(duration: Duration!, serviceCode: String!): Service
+    searchService(serviceCode: String!): Service
 
     # Service intance query
     getServiceInstances(duration: Duration!, id: ID!): [ServiceInstance!]!