How can i make the querystring with fastify work the same as express. I was trying to use this addition to nodejs for paging and filtering queries with mikro-orm https://github.com/emulienfou/nestjs-mikro-orm-pageable and it wasn't working correctly for filtering. I checked out the code and switched out the e2e tests to use fasitfy and all the filtering tests failed. You can see one here: https://github.com/emulienfou/nestjs-mikro-orm-pageable/blob/3277e1dfac53d431181b1f799835669ca064d408/e2e/e2e-spec.ts#L74
I then checked the code and noticed that this hasParam check succeeds in express, but not in fastify. https://github.com/emulienfou/nestjs-mikro-orm-pageable/blob/main/src/decorators/paginate.decorator.ts#L85
How can i make it behave like express does in this regard?