This is an automated email from the ASF dual-hosted git repository. wankai pushed a commit to branch tag-auto-add-duration in repository https://gitbox.apache.org/repos/asf/skywalking-query-protocol.git
commit cd95c8a8c4fc21cbd39b71b72579bd7252232725 Author: wankai123 <[email protected]> AuthorDate: Thu Apr 28 19:26:00 2022 +0800 Add duration to filter the trace tag autocomplete result. --- trace.graphqls | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trace.graphqls b/trace.graphqls index 5f30603..890f98f 100644 --- a/trace.graphqls +++ b/trace.graphqls @@ -119,6 +119,6 @@ type LogEntity { extend type Query { queryBasicTraces(condition: TraceQueryCondition): TraceBrief queryTrace(traceId: ID!): Trace - queryTraceTagAutocompleteKeys:[String!] - queryTraceTagAutocompleteValues(tagKey: String!):[String!] + queryTraceTagAutocompleteKeys(duration: Duration!):[String!] + queryTraceTagAutocompleteValues(tagKey: String! , duration: Duration!):[String!] }
