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,
The parameters are Router.go(path, params, options). The query part should go in the options parameter, so try the following: Router.go(path, {}, {query: {filter: 'filter='+filter}}).
Router.go(path, params, options)
options
Router.go(path, {}, {query: {filter: 'filter='+filter}})
EDIT
Answer updated according to Robins comment below.