Can deepLinker show query string url for PWA?

deepLinker config

{ component: ItemPage, name: 'item', segment: 'item/:id' }

if you

this.navCtrl.push('item', { id: 1, other: 2, other3: 3 })

now URL like http://xxx/item/1

When user refresh this page , Parameter other and other3 will lost.

I want the URL is: http://xxx/item/1?other=2&other3=3

1 Like

I am also looking for same. Have you got it working?