mirror of
https://github.com/dstotijn/hetty.git
synced 2025-07-01 18:47:29 -04:00
17 lines
163 B
GraphQL
17 lines
163 B
GraphQL
type Request {
|
|
url: String!
|
|
method: HttpMethod!
|
|
timestamp: Time!
|
|
}
|
|
|
|
|
|
type Query {
|
|
getRequests: [Request!]!
|
|
}
|
|
|
|
enum HttpMethod {
|
|
GET
|
|
POST
|
|
}
|
|
|
|
scalar Time |