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