Page URL Query Param Dynamic Value

Hi Plasmic team!
I’ve been working on a paginated data list in Plasmic Native, and I ran into a limitation that blocks fully dynamic pagination using URL query parameters.
Problem
Plasmic Native currently lets us read query params like ?page=2 using the built-in URL Query Parameter state, but:
We cannot update or set that query param dynamically (e.g., on a “Next” button click).
There’s no built-in action or interaction to modify the query string.
This makes it impossible to implement proper pagination with ?page=N links, stateful navigation, or deep linking — unless we use custom code components or static links.
Workaround Tried
Using URL Query Param state to read the value and pass it to an API fetcher
Using static link buttons like /blog?page=2
But cannot dynamically change ?page= from inside Plasmic

Hi @hamza_iqbal, welcome to the Plasmic community!

Currently, you’ll need to use a dynamic value to build the URL instead of using the native control.

`/blog?page=${+$ctx.query.page + 1}`

but i want to pass dynamic value as initial value to query param like a state value which may be later update according to pagination updated