File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,12 @@ type Mutation {
28
28
version : String
29
29
}
30
30
31
+ # String key, String value pair.
32
+ type KeyValue {
33
+ key : String !
34
+ value : String
35
+ }
36
+
31
37
# The Duration defines the start and end time for each query operation.
32
38
# Fields: `start` and `end`
33
39
# represents the time span. And each of them matches the step.
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ type Log {
34
34
statusCode : String
35
35
contentType : ContentType !
36
36
content : String
37
+ tags : [KeyValue ! ]
37
38
}
38
39
39
40
# Represent the conditions used for query logs
Original file line number Diff line number Diff line change @@ -112,11 +112,6 @@ enum RefType {
112
112
CROSS_THREAD
113
113
}
114
114
115
- type KeyValue {
116
- key : String !
117
- value : String
118
- }
119
-
120
115
type LogEntity {
121
116
time : Long !
122
117
data : [KeyValue ! ]
You can’t perform that action at this time.
0 commit comments