By default, Eden-Query does not cancel requests via Svelte Query.
If you want to opt into this behaviour, you can provide abortOnUnmount in your configuration.
@tanstack/svelte-query only supports aborting queries.
Although this property is named abortOnUnmount, it actually means "forward signal from tanstack-query".
tanstack-query's signal facilitates additional functionality such as cancelling requests
if there's already a duplicate in-progress.
This has been discussed within tRPC here.
You may also override this behaviour at the query level.