Patch Changes
-
Add
createEffectAPI for reactive delta-driven effects anduseLiveQueryEffectReact hook. (#1221)createEffectattaches callbacks to a live query's delta stream — firingonEnter,onExit, andonUpdatefor row-level query-result transitions andonBatchfor the full delta batch from each graph run — without materialising the full result set. SupportsskipInitial,orderBy+limit(top-K window), joins, lazy loading, transaction coalescing, async disposal withAbortSignal, andonSourceError/onErrorcallbacks.useLiveQueryEffectis the React hook wrapper that manages the effect lifecycle (create on mount, dispose on unmount, recreate on dependency change).