method HonoRequest.prototype.queryimport { HonoRequest } from "https://dotland.deno.dev/x/hono@v4.2.2/request.ts"; query(key: string): string | undefined.query() can get querystring parameters. query(): Record<string, string>.query() can get querystring parameters. ExamplesExample 1 // Query params app.get('/search', (c) => { const query = c.req.query('q') }) // Get all params at once app.get('/search', (c) => { const { q, limit, offset } = c.req.query() }) Parameterskey: stringReturnsstring | undefinedReturnsRecord<string, string>