import { HonoRequest } from "https://deno.land/x/hono@v4.1.0/mod.ts";
.queries()
can get multiple querystring parameter values, e.g. /search?tags=A&tags=B
Examples
Example 1
Example 1
app.get('/search', (c) => {
// tags will be string[]
const tags = c.req.queries('tags')
})