ui-router sref para neto com parâmetro em filho

Como posso criar um sref que me leve a um estado neto, quando tenho um parâmetro na URL para o estado filho?

Aqui estão alguns pseudocódigo:

.state( 'foo', {url:'/', template:'<div ui-view></div><a ui-sref="foo.bar.baz(bar: 'bing')">Bing Baz</a>'})
.state( 'foo.bar', {url:':bar',abstract: true, templateURL:'bar.tpl.html'})
.state( 'foo.bar.baz', {url:'/baz', template:'I am a baz, and if you clicked from the foo state, I should be a Bing Baz!'});

questionAnswers(1)

yourAnswerToTheQuestion