Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions common.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ type Mutation {
version: String
}

# String key, String value pair.
type KeyValue {
key: String!
value: String
}

# The Duration defines the start and end time for each query operation.
# Fields: `start` and `end`
# represents the time span. And each of them matches the step.
Expand Down
1 change: 1 addition & 0 deletions log.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ type Log {
statusCode: String
contentType: ContentType!
content: String
tags: [KeyValue!]
}

# Represent the conditions used for query logs
Expand Down
5 changes: 0 additions & 5 deletions trace.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,6 @@ enum RefType {
CROSS_THREAD
}

type KeyValue {
key: String!
value: String
}

type LogEntity {
time: Long!
data: [KeyValue!]
Expand Down