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,
I found that if your first parameter in Router.go is a path, instead of a template name, the query filter is not passed. Use a template name:
Router.go(templatename, {_id: 1}, {query: 'q=s', hash: 'hashFrag'});