query params reactivity #27
Answered
by
Akryum
aprod-captiwate
asked this question in
Q&A
-
Hey, we are trying out rstore and we would like to implement a basic pagination to our component
This is our current code, I tried to increase the page number, but
Is there a workaround I'm missing here? Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
Akryum
Apr 3, 2025
Replies: 1 comment 3 replies
-
For now you need to use a function: const store = useStore();
const { data: conversations } = store.conversations.queryMany(() => ({
params: {
page: page.value,
},
})); |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
aprod-captiwate
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For now you need to use a function: