Everywhere we support string `href`, we can support a `pathname` + object/string `query` object: ```jsx <Link href={ pathname: '/aaa', query: { a: 'b' } }> ``` ```jsx Router.push({ pathname: '/woot', query: { test: 2 } }) ``` Would make many lives easier. AMA