mirror of
https://github.com/dstotijn/hetty.git
synced 2025-07-01 18:47:29 -04:00
Add headers to log details, add Monaco Editor
This commit is contained in:
@ -3,6 +3,7 @@ type HttpRequestLog {
|
||||
url: String!
|
||||
method: HttpMethod!
|
||||
proto: String!
|
||||
headers: [HttpHeader!]!
|
||||
body: String
|
||||
timestamp: Time!
|
||||
response: HttpResponseLog
|
||||
@ -14,6 +15,12 @@ type HttpResponseLog {
|
||||
status: String!
|
||||
statusCode: Int!
|
||||
body: String
|
||||
headers: [HttpHeader!]!
|
||||
}
|
||||
|
||||
type HttpHeader {
|
||||
key: String!
|
||||
value: String!
|
||||
}
|
||||
|
||||
type Query {
|
||||
|
Reference in New Issue
Block a user