@memberjunction/graphql-dataprovider 5.37.0 → 5.39.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/index.cjs +67 -51
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +109 -10
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +109 -10
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +121 -105
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -637,7 +637,7 @@ console.log(prompt.PromptRole); // From AIPrompt
|
|
|
637
637
|
### Related Documentation
|
|
638
638
|
|
|
639
639
|
For comprehensive information about IS-A relationships in MemberJunction:
|
|
640
|
-
- [IS-A Relationships Architecture](
|
|
640
|
+
- [IS-A Relationships Architecture](../MJCore/docs/isa-relationships.md) - Server-side implementation details, entity structure, and transaction management
|
|
641
641
|
|
|
642
642
|
## Key Classes and Types
|
|
643
643
|
|
|
@@ -722,7 +722,7 @@ For the warm-load smart-cache-check flow this matters a lot — the client reads
|
|
|
722
722
|
|
|
723
723
|
`setupGraphQLClient` orchestrates a deterministic warm-load path: after `provider.Config(...)` loads the cached `AllMetadata` blob from IndexedDB (gzip-compressed, three keys read in a single batched call), it calls `provider.preValidateAndRefresh()` to confirm the cache is current via a single batched timestamp round-trip. If current, engines trust their local caches and route per-view requests through `RunViewsWithCacheCheck` — a fingerprint-only GraphQL call that returns either a "current" marker (use local cache) or fresh data for stale entries.
|
|
724
724
|
|
|
725
|
-
For the full architecture — differential updates, Redis cross-server sync, session-based deduplication, and deployment topologies — see the [**Caching & Pub/Sub Guide**](
|
|
725
|
+
For the full architecture — differential updates, Redis cross-server sync, session-based deduplication, and deployment topologies — see the [**Caching & Pub/Sub Guide**](../../guides/CACHING_AND_PUBSUB_GUIDE.md).
|
|
726
726
|
|
|
727
727
|
## Dependencies
|
|
728
728
|
|