I read https://github.com/fastify/fastify/blob/master/docs/Routes.md
But my router doesn't seems to catch the right url with params
Url : /app/name?id=666&method=3&_=1553342444710
I tried:
fastify.get('/app/:id-:method:*', (request, reply) => {
fastify.get('/app/*', (request, reply) => {
fastify.get('/app/:id-:method:-:_', (request, reply) => {