From 17783ccadcf52b450a4561e9e3b53ae19e42d583 Mon Sep 17 00:00:00 2001 From: Dipak Halkude Date: Wed, 15 Oct 2025 15:16:30 +0530 Subject: [PATCH 1/5] docs: unify query update terminology and improve navigation --- .../docs/20-core-concepts/60-remote-functions.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/documentation/docs/20-core-concepts/60-remote-functions.md b/documentation/docs/20-core-concepts/60-remote-functions.md index 969b90d17121..c46194a38f52 100644 --- a/documentation/docs/20-core-concepts/60-remote-functions.md +++ b/documentation/docs/20-core-concepts/60-remote-functions.md @@ -160,9 +160,9 @@ export const getPost = query(v.string(), async (slug) => { Both the argument and the return value are serialized with [devalue](https://github.com/sveltejs/devalue), which handles types like `Date` and `Map` (and custom types defined in your [transport hook](hooks#Universal-hooks-transport)) in addition to JSON. -### Refreshing queries +### Updating queries -Any query can be re-fetched via its `refresh` method, which retrieves the latest value from the server: +Any query can be updated via its `refresh` method, which retrieves the latest value from the server: ```svelte