List of currently:
import { getStores } from 'zuglet/utils';
let stats = getStores(this).stats;
let stats = store.stores.stats;
List of activated models, documents, queries, …
Useful for debugging.
List of documents, queries, auth state change and storage tasks being observed.
Useful for debugging.
List of currently running promises which are not yet settled. Each promise has stats
property with { model, label }
for debugging.
let promise = stats.promises[0];
promise.stats.model // → <Document…>
promise.stats.label // → 'load'
Resolves when all currently running stats.promises
settle.