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.
Explore the GraphQL schema in Hoppscotch to understand queries, mutations, types, and subscriptions. Inspect and navigate API documentation.
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?