Request with queries method, URL, and headers. where the header points to another type Header.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Learn how to use the GraphQL schema on Hoppscotch.
type Query {
hello: String
}
https://echo.hoppscotch.io/graphql
schema {
query: Request
}
type Request {
method: String
url: String
headers: [Header]
}
type Header {
key: String
value: String
}
Request with queries method, URL, and headers. where the header points to another type Header.Was this page helpful?