I am trying to pass query parameters in Router.go like below:
var filter = \'abc\'; var path = Router.current() && Router.current().path; Router.go(path,
Try this:
var path = Router.current() && Router.current().route.originalPath;
That should give you the path without the query string attached.