1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
use crate::{query_observer::ListenerKey, *};
use leptos::*;
use std::{borrow::Borrow, cell::Cell, collections::HashMap, future::Future, rc::Rc};

use self::{
    cache_observer::CacheObserver, query::Query, query_cache::QueryCache,
    query_observer::QueryObserver, query_persister::QueryPersister,
};

/// Provides a Query Client to the current scope.
pub fn provide_query_client() {
    provide_query_client_with_options(DefaultQueryOptions::default());
}

/// Provides a Query Client to the current scope with custom options.
pub fn provide_query_client_with_options(options: DefaultQueryOptions) {
    let owner = Owner::current().expect("Owner to be present");

    provide_context(QueryClient::new(owner, options));
}

/// Provides a Query Client to the current scope with custom options and a persister.
pub fn provide_query_client_with_options_and_persister(
    options: DefaultQueryOptions,
    persister: impl QueryPersister + Clone + 'static,
) {
    let owner = Owner::current().expect("Owner to be present");

    let client = QueryClient::new(owner, options);

    client.add_persister(persister);

    provide_context(client);
}

/// Retrieves a Query Client from the current scope.
pub fn use_query_client() -> QueryClient {
    use_context::<QueryClient>().expect("Query Client Missing.")
}

/// The Cache Client to store query data.
/// Exposes utility functions to manage queries.
///
/// Queries can be:
/// - [Prefetched](Self::prefetch_query)
///     - Query will start loading before you invoke [use_query](use_query::use_query()).
/// - [Invalidated](Self::invalidate_query)
///     - Query will refetch on next usage. Active queries are immediately refetched in the background.
/// - [Introspected](Self::get_query_state)
///     - Let's you see what the current value is of a query is.
/// - [Manually updated](Self::set_query_data)
///     - Useful when you have updated a value and you want to manually set it in cache instead of waiting for query to refetch.
#[derive(Clone)]
pub struct QueryClient {
    pub(crate) cache: QueryCache,
    pub(crate) default_options: DefaultQueryOptions,
}

impl QueryClient {
    /// Creates a new Query Client.
    pub fn new(owner: Owner, default_options: DefaultQueryOptions) -> Self {
        Self {
            cache: QueryCache::new(owner),
            default_options,
        }
    }

    /// Fetch a query and store it in cache. Returns QueryResult.
    /// Result can be read outside of Transition.
    ///
    /// If you don't need the result opt for [`prefetch_query()`](Self::prefetch_query)
    pub async fn fetch_query<K, V, Fu>(
        &self,
        key: K,
        fetcher: impl Fn(K) -> Fu + 'static,
    ) -> QueryState<V>
    where
        K: QueryKey + 'static,
        V: QueryValue + 'static,
        Fu: Future<Output = V> + 'static,
    {
        #[cfg(any(feature = "hydrate", feature = "csr"))]
        {
            let query = self.cache.get_or_create_query::<K, V>(key);

            query::execute_query(query.clone(), fetcher).await;

            query.get_state()
        }
        #[cfg(not(any(feature = "hydrate", feature = "csr")))]
        {
            let _ = key;
            let _ = fetcher;
            QueryState::Created
        }
    }

    /// Prefetch a query and store it in cache.
    /// If the entry already exists it will still be refetched.
    ///
    /// If you need the result opt for [`fetch_query()`](Self::fetch_query)
    pub async fn prefetch_query<K, V, Fu>(&self, key: K, fetcher: impl Fn(K) -> Fu + 'static)
    where
        K: QueryKey + 'static,
        V: QueryValue + 'static,
        Fu: Future<Output = V> + 'static,
    {
        #[cfg(any(feature = "hydrate", feature = "csr"))]
        {
            let query = self.cache.get_or_create_query::<K, V>(key);

            query::execute_query(query.clone(), fetcher).await;
        }
        #[cfg(not(any(feature = "hydrate", feature = "csr")))]
        {
            let _ = key;
            let _ = fetcher;
        }
    }

    /// Retrieve the current state for an existing query.
    /// If the query does not exist, [`None`](Option::None) will be returned.
    pub fn get_query_state<K, V>(
        &self,
        key: impl Fn() -> K + 'static,
    ) -> Signal<Option<QueryState<V>>>
    where
        K: QueryKey + 'static,
        V: QueryValue + 'static,
    {
        let cache = self.cache.clone();
        let size = self.size();

        // // Memoize state to avoid unnecessary hashmap lookups.
        let maybe_query = create_memo(move |_| {
            let key = key();
            // Subscribe to inserts/deletions.
            size.track();
            cache.get_query::<K, V>(&key)
        });

        let observer = Rc::new(QueryObserver::no_fetcher(
            QueryOptions::default(),
            maybe_query.get_untracked(),
        ));

        let state_signal = RwSignal::new(maybe_query.get_untracked().map(|q| q.get_state()));

        let listener = Rc::new(Cell::new(None::<ListenerKey>));

        create_isomorphic_effect({
            move |_| {
                // Ensure listener is set.
                if listener.get().is_none() {
                    let listener_id = observer.add_listener(move |state| {
                        state_signal.set(Some(state.clone()));
                    });
                    listener.set(Some(listener_id));
                }

                // Update
                let query = maybe_query.get();
                let current_state = query.as_ref().map(|q| q.get_state());
                observer.update_query(query);
                state_signal.set(current_state);
            }
        });

        state_signal.into()
    }

    /// Retrieve the current state for an existing query.
    /// If the query does not exist, [`None`](Option::None) will be returned.
    /// Useful for when you want to introspect the state of a query without subscribing to it.
    pub fn peek_query_state<K, V>(&self, key: &K) -> Option<QueryState<V>>
    where
        K: QueryKey + 'static,
        V: QueryValue + 'static,
    {
        self.cache.get_query::<K, V>(key).map(|q| q.get_state())
    }

    /// Attempts to invalidate an entry in the Query Cache.
    /// Matching query is marked as invalid, and will be refetched in background once it's active.
    ///
    /// Returns true if the entry was successfully invalidated.
    ///
    /// Example:
    /// ```
    /// use leptos_query::*;
    ///
    /// use leptos_query::*;
    /// fn invalidate() {
    ///     let client = use_query_client();
    ///     let invalidated = client.invalidate_query::<u32, u32>(0);
    /// }
    /// ```
    pub fn invalidate_query<K, V>(&self, key: impl Borrow<K>) -> bool
    where
        K: QueryKey + 'static,
        V: QueryValue + 'static,
    {
        self.cache
            .use_cache_option(|cache: &HashMap<K, Query<K, V>>| {
                cache
                    .get(Borrow::borrow(&key))
                    .map(|state| state.mark_invalid())
            })
            .unwrap_or(false)
    }

    /// Attempts to invalidate multiple entries in the Query Cache with a common <K, V> type.
    /// All matching queries are immediately marked as invalid and active queries are refetched in the background.
    ///
    /// Returns the keys that were successfully invalidated.
    ///
    /// Example:
    /// ```
    /// use leptos_query::*;
    /// fn invalidate() {
    ///     let client = use_query_client();
    ///     let keys: Vec<u32> = vec![0, 1];
    ///     let invalidated = client.invalidate_queries::<u32, u32, _>(keys);
    /// }
    ///
    /// ```
    pub fn invalidate_queries<K, V, Q>(&self, keys: impl IntoIterator<Item = Q>) -> Option<Vec<Q>>
    where
        K: crate::QueryKey + 'static,

        V: crate::QueryValue + 'static,
        Q: Borrow<K> + 'static,
    {
        self.cache
            .use_cache_option(|cache: &HashMap<K, Query<K, V>>| {
                let result = keys
                    .into_iter()
                    .filter(|key| {
                        cache
                            .get(Borrow::borrow(key))
                            .map(|query| query.mark_invalid())
                            .unwrap_or(false)
                    })
                    .collect::<Vec<_>>();
                Some(result)
            })
    }

    /// Invalidate all queries with a common <K, V> type.
    ///
    /// Example:
    /// ```
    /// use leptos_query::*;
    ///
    /// #[derive(Debug, Clone, Copy, Hash, Eq, PartialEq)]
    /// struct MonkeyId(u32);
    ///
    /// #[derive(Debug, Clone, serde::Deserialize, serde::Serialize)]
    /// struct Monkey {
    ///     name: String
    /// }
    ///
    /// fn invalidate() {
    ///     let client = use_query_client();
    ///     let keys: Vec<u32> = vec![0, 1];
    ///     let invalidated = client.invalidate_query_type::<String, Monkey>();
    /// }
    ///
    /// ```
    pub fn invalidate_query_type<K, V>(&self)
    where
        K: QueryKey + 'static,
        V: QueryValue + 'static,
    {
        self.cache
            .use_cache_option(|cache: &HashMap<K, Query<K, V>>| {
                for q in cache.values() {
                    q.mark_invalid();
                }
                Some(())
            });
    }

    /// Invalidates all queries in the cache.
    ///
    /// Example:
    ///
    /// ```
    /// use leptos::*;
    /// use leptos_query::*;
    ///
    /// fn invalidate() {
    ///     let client = use_query_client();
    ///     let keys: Vec<u32> = vec![0, 1];
    ///     let invalidated = client.invalidate_all_queries();
    /// }
    ///
    /// ```
    ///
    pub fn invalidate_all_queries(&self) {
        self.cache.invalidate_all_queries()
    }

    /// Returns the current size of the cache.
    ///
    /// Example:
    /// ```
    /// use leptos::*;
    /// use leptos_query::*;
    ///
    /// fn invalidate() {
    ///    let client = use_query_client();
    ///    let cache_size = client.size();
    /// }
    ///
    /// ```
    pub fn size(&self) -> Signal<usize> {
        self.cache.size()
    }

    /// A synchronous function that can be used to immediately set a query's data.
    ///
    /// If the query does not exist, it will be created.
    ///
    /// If you need to fetch the data asynchronously, use [`fetch_query`](Self::fetch_query) or [`prefetch_query`](Self::prefetch_query).
    ///
    /// If the updater function returns [`None`](Option::None), the query data will not be updated.
    ///
    /// If the updater function receives [`None`](Option::None) as input, you can return [`None`](Option::None) to bail out of the update and thus not create a new cache entry.
    ///
    /// Example:
    /// ```
    /// use leptos_query::*;
    ///
    /// #[derive(Debug, Clone, Copy, Hash, Eq, PartialEq)]
    /// struct MonkeyId(u32);
    ///
    /// #[derive(Debug, Clone, serde::Deserialize, serde::Serialize)]
    /// struct Monkey {
    ///     name: String
    /// }
    ///
    /// fn invalidate() {
    ///     let client = use_query_client();
    ///     // Overwrite existing data.
    ///     client.update_query_data::<MonkeyId, Monkey>(MonkeyId(0), |_| Some(Monkey { name: "George".to_string() }));
    ///
    ///     // Don't overwrite George.
    ///     client.update_query_data::<MonkeyId, Monkey>(MonkeyId(0), |probably_george| {
    ///        if let Some(Monkey { name }) = probably_george {
    ///            if name == "George" {
    ///               return None;
    ///            }
    ///        }
    ///        Some(Monkey { name: "Luffy".to_string() })
    ///     });
    ///
    /// }
    /// ```
    pub fn update_query_data<K, V>(
        &self,
        key: K,
        updater: impl FnOnce(Option<&V>) -> Option<V> + 'static,
    ) where
        K: QueryKey + 'static,
        V: QueryValue + 'static,
    {
        self.cache
            .use_cache_entry(key.clone(), move |(owner, entry)| match entry {
                Some(query) => {
                    query.maybe_map_state(|state| match state {
                        QueryState::Created | QueryState::Loading => {
                            if let Some(result) = updater(None) {
                                Ok(QueryState::Loaded(QueryData::now(result)))
                            } else {
                                Err(state)
                            }
                        }
                        QueryState::Fetching(ref data) => {
                            if let Some(result) = updater(Some(&data.data)) {
                                Ok(QueryState::Fetching(QueryData::now(result)))
                            } else {
                                Err(state)
                            }
                        }
                        QueryState::Loaded(ref data) => {
                            if let Some(result) = updater(Some(&data.data)) {
                                Ok(QueryState::Loaded(QueryData::now(result)))
                            } else {
                                Err(state)
                            }
                        }
                        QueryState::Invalid(ref data) => {
                            if let Some(result) = updater(Some(&data.data)) {
                                Ok(QueryState::Loaded(QueryData::now(result)))
                            } else {
                                Err(state)
                            }
                        }
                    });
                    None
                }
                None => {
                    if let Some(result) = updater(None) {
                        let query = with_owner(owner, || Query::new(key));
                        query.set_state(QueryState::Loaded(QueryData::now(result)));
                        Some(query)
                    } else {
                        None
                    }
                }
            });
    }

    /// Update the query's data.
    /// If the query does not exist, it will be created.
    pub fn set_query_data<K, V>(&self, key: K, data: V)
    where
        K: QueryKey + 'static,
        V: QueryValue + 'static,
    {
        self.update_query_data(key, |_| Some(data));
    }

    /// Mutate the existing data if it exists.
    /// All listeners will be notified, regardless of whether the data was updated or not.
    pub fn update_query_data_mut<K, V>(
        &self,
        key: impl Borrow<K>,
        updater: impl FnOnce(&mut V),
    ) -> bool
    where
        K: QueryKey + 'static,
        V: QueryValue + 'static,
    {
        self.cache.use_cache::<K, V, bool>(move |cache| {
            let mut updated = false;
            if let Some(query) = cache.get(key.borrow()) {
                query.update_state(|state| {
                    if let Some(data) = state.data_mut() {
                        updater(data);
                        updated = true;
                    }
                });
            }
            updated
        })
    }

    /// Cancel any currently executing query.
    /// Returns whether the query was cancelled or not.
    pub fn cancel_query<K, V>(&self, key: K) -> bool
    where
        K: QueryKey + 'static,
        V: QueryValue + 'static,
    {
        self.cache.use_cache::<K, V, bool>(move |cache| {
            if let Some(query) = cache.get(&key) {
                query.cancel()
            } else {
                false
            }
        })
    }

    /// Registers the cache observer.
    pub fn register_cache_observer(&self, observer: impl CacheObserver + 'static) {
        let key = self.cache.register_observer(observer);
        let cache = self.cache.clone();

        on_cleanup(move || {
            cache.unregister_observer(key);
        })
    }

    /// Adds a persister to the cache.
    pub fn add_persister(&self, persister: impl QueryPersister + Clone + 'static) {
        self.register_cache_observer(persister.clone());
        self.cache.add_persister(persister);
    }

    /// Removes the persister from the cache.
    pub fn remove_persister(&self) -> bool {
        self.cache.remove_persister().is_some()
    }

    /// Clears the cache. All queries will be removed.
    pub fn clear(&self) {
        self.cache.clear_all_queries()
    }
}

#[cfg(all(test, not(any(feature = "csr", feature = "hydrate"))))]
mod tests {
    use super::*;

    #[test]
    fn update_query_data() {
        let _ = create_runtime();

        provide_query_client();
        let client = use_query_client();

        let state = || {
            use_query_client()
                .cache
                .get_query::<u32, String>(&0)
                .map(|q| q.get_state())
        };

        assert_eq!(None, state());
        assert_eq!(0, client.size().get_untracked());

        client.update_query_data::<u32, String>(0, |_| None);

        assert_eq!(None, state());
        assert_eq!(0, client.size().get_untracked());

        client.update_query_data::<u32, String>(0, |_| Some("0".to_string()));

        assert_eq!(1, client.size().get_untracked());

        assert_eq!(
            Some("0".to_string()),
            state().and_then(|q| q.data().cloned())
        );

        assert!(matches!(state(), Some(QueryState::Loaded { .. })));

        client.update_query_data::<u32, String>(0, |_| Some("1".to_string()));

        assert_eq!(
            Some("1".to_string()),
            state().and_then(|q| q.data().cloned())
        );
    }

    #[test]
    fn set_query_data_new_query() {
        let _ = create_runtime();

        provide_query_client();
        let client = use_query_client();

        // Closure to get the current state of a query
        let state = || {
            use_query_client()
                .cache
                .get_query::<u32, String>(&0)
                .map(|q| q.get_state())
                .and_then(|s| s.data().cloned())
        };

        // Verify initial state: Query does not exist
        assert_eq!(None, state());

        // Set data for a new query
        client.set_query_data::<u32, String>(0, "New Data".to_string());

        // Verify the query now exists with the correct data
        assert_eq!(Some("New Data".to_string()), state());
    }

    #[test]
    fn set_query_data_existing_query() {
        let _ = create_runtime();

        provide_query_client();
        let client = use_query_client();

        // Closure to get the current state of a query
        let state = |key: u32| {
            use_query_client()
                .cache
                .get_query::<u32, String>(&key)
                .map(|q| q.get_state())
                .and_then(|s| s.data().cloned())
        };

        // Setup: Create an initial query with some data
        client.set_query_data::<u32, String>(1, "Initial Data".to_string());

        // Verify initial state: Query exists with initial data
        assert_eq!(Some("Initial Data".to_string()), state(1));

        // Set new data for the existing query
        client.set_query_data::<u32, String>(1, "Updated Data".to_string());

        // Verify the query data has been updated
        assert_eq!(Some("Updated Data".to_string()), state(1));
    }

    #[test]
    fn can_use_same_key_with_different_value_types() {
        let _ = create_runtime();

        provide_query_client();
        let client = use_query_client();

        client.update_query_data::<u32, String>(0, |_| Some("0".to_string()));

        client.update_query_data::<u32, u32>(0, |_| Some(1234));

        assert_eq!(2, client.size().get_untracked());
    }

    #[test]
    fn can_invalidate_while_subscribed() {
        let _ = create_runtime();

        provide_query_client();
        let client = use_query_client();

        let subscription = client.get_query_state::<u32, u32>(|| 0_u32);

        create_isomorphic_effect(move |_| {
            subscription.track();
        });

        client.update_query_data::<u32, u32>(0_u32, |_| Some(1234));

        assert!(client.invalidate_query::<u32, u32>(0));
        let state = subscription.get_untracked();

        assert!(
            matches!(state, Some(QueryState::Invalid { .. })),
            "Query should be invalid"
        );
    }

    #[test]
    fn can_invalidate_multiple() {
        let _ = create_runtime();

        provide_query_client();
        let client = use_query_client();

        client.update_query_data::<u32, u32>(0, |_| Some(1234));
        client.update_query_data::<u32, u32>(1, |_| Some(1234));
        let keys: Vec<u32> = vec![0, 1];
        let invalidated = client
            .invalidate_queries::<u32, u32, _>(keys.clone())
            .unwrap_or_default();

        assert_eq!(keys, invalidated)
    }

    #[test]
    fn can_invalidate_multiple_strings() {
        let _ = create_runtime();

        provide_query_client();
        let client = use_query_client();

        let zero = "0".to_string();
        let one = "1".to_string();

        client.update_query_data::<String, String>(zero.clone(), |_| Some("1234".into()));
        client.update_query_data::<String, String>(one.clone(), |_| Some("5678".into()));

        let keys = vec![zero, one];
        let invalidated = client
            .invalidate_queries::<String, String, _>(keys.clone())
            .unwrap_or_default();

        assert_eq!(keys, invalidated)
    }

    #[test]
    fn invalidate_all() {
        let _ = create_runtime();

        provide_query_client();
        let client = use_query_client();

        let zero = "0".to_string();
        let one = "1".to_string();

        client.update_query_data::<String, String>(zero.clone(), |_| Some("1234".into()));
        client.update_query_data::<String, String>(one.clone(), |_| Some("5678".into()));
        client.update_query_data::<u32, u32>(0, |_| Some(1234));
        client.update_query_data::<u32, u32>(1, |_| Some(5678));

        let state0_string = client.get_query_state::<String, String>(move || zero.clone());

        let state1_string = client.get_query_state::<String, String>(move || one.clone());

        let state0 = client.get_query_state::<u32, u32>(|| 0);
        let state1 = client.get_query_state::<u32, u32>(|| 1);

        client.invalidate_all_queries();

        assert!(matches!(
            state0.get_untracked(),
            Some(QueryState::Invalid { .. })
        ));
        assert!(matches!(
            state1.get_untracked(),
            Some(QueryState::Invalid { .. })
        ));
        assert!(matches!(
            state0_string.get_untracked(),
            Some(QueryState::Invalid { .. })
        ));
        assert!(matches!(
            state1_string.get_untracked(),
            Some(QueryState::Invalid { .. })
        ));
    }

    #[test]
    fn can_invalidate_subset() {
        let _ = create_runtime();

        provide_query_client();
        let client = use_query_client();

        client.update_query_data::<u32, u32>(0, |_| Some(1234));
        client.update_query_data::<u32, u32>(1, |_| Some(1234));

        let state0 = client.get_query_state::<u32, u32>(|| 0);
        let state1 = client.get_query_state::<u32, u32>(|| 1);

        client.invalidate_query_type::<u32, u32>();

        assert!(matches!(
            state0.get_untracked(),
            Some(QueryState::Invalid { .. })
        ));
        assert!(matches!(
            state1.get_untracked(),
            Some(QueryState::Invalid { .. })
        ));
    }

    #[test]
    fn update_query_data_mut() {
        let _ = create_runtime();

        provide_query_client();
        let client = use_query_client();

        let state = |key: u32| {
            use_query_client()
                .cache
                .get_query::<u32, u32>(&key)
                .map(|q| q.get_state())
                .and_then(|s| s.data().cloned())
        };

        // Setup: Create initial query data
        let initial_value = 100_u32;
        client.update_query_data::<u32, u32>(0, move |_| Some(initial_value));

        assert_eq!(state(0), Some(100));

        // Action: Update the data using `update_query_data_mut`
        let update_result = client.update_query_data_mut::<u32, u32>(0, |data| *data += 50);

        // Verification: Check that the data was updated and the method returned `true`
        assert!(update_result, "Expected data to be updated");
        assert_eq!(
            state(0),
            Some(initial_value + 50),
            "Data was not updated correctly"
        );

        // Negative Case: Attempt to update a non-existent query
        let non_existent_update_result =
            client.update_query_data_mut::<u32, u32>(1, |data| *data += 50);

        assert!(
            !non_existent_update_result,
            "Expected no data to be updated for a non-existent query"
        );

        assert_eq!(state(1), None, "Data was updated for a non-existent query")
    }
}