Files
hetty/pkg/api/schema.graphql

17 lines
163 B
GraphQL
Raw Normal View History

type Request {
url: String!
method: HttpMethod!
timestamp: Time!
2019-12-01 14:47:25 +01:00
}
type Query {
getRequests: [Request!]!
2019-12-01 14:47:25 +01:00
}
enum HttpMethod {
GET
POST
2019-12-01 14:47:25 +01:00
}
scalar Time