Files
hetty/pkg/api/schema.graphql
2020-02-23 22:07:46 +01:00

17 lines
163 B
GraphQL

type Request {
url: String!
method: HttpMethod!
timestamp: Time!
}
type Query {
getRequests: [Request!]!
}
enum HttpMethod {
GET
POST
}
scalar Time