ccarruitero / ccarruitero/makemehapi
request.query always empty
Open
- Dominant language
- JavaScript
- Stars
- 480
- Forks
- 104
- PR merge metrics
- No merged PRs in 30d
Description
Hello I'm trying to catch my query strings in my rutes but in 17.2 it's always emty
Here is my route
const Movie = require('../models/movie')
module.exports = {
method: 'GET',
path: '/api/movies',
handler: async (req, h) => {
console.log(req.query)
return await Movie.find()
}
}
and the call I do is localhost:8000/api/movies?cat=test&l=tyui
Contributor guide
Assessment
This issue has not been assessed yet.