DDD Data Layer: Multiple Entities
SkillDev toolsStructure a Ledger Wallet data layer where one API response serves several entities. Use when creating or reviewing cross-entity domain/api orchestration with RTK Query, createAsyncThunk, or both, including response validation and tests spanning multiple domain/entity packages.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the DDD Data Layer: Multiple Entities skill
What this skill tells your AI
The instructions your AI receives, as published by ledgerhq/ledger-live in .agents/skills/ddd-data-layer-advanced/SKILL.md and read by ahel’s review.
Apply only when one API response maps to several autonomous entities. Use ddd-types-state-mocks for the rules inside each entity package.
Source: Data Layer Advanced Use Case
Split Ownership
domain/entity/<first>/src/schema.ts
domain/entity/<second>/src/schema.ts
domain/api/<orchestrator>/src/api.ts
- Let each entity own its schema and inferred type. Add state, selectors, mocks, and tests only when that entity needs them.
- Let one
domain/apipackage own the cross-entity response contract, request, transformation, and validation. - Keep UI and feature state in
features/flow. - Keep app composition out of the domain package.
Process The Response
- Fetch with RTK Query,
createAsyncThunk, or both. - In the API layer, validate and transform each response collection with its owning entity schema.
- Keep the result in RTK Query or dispatch the validated entities when slices must be hydrated.
Validate the collection before iterating over it: prefer entitySchema.array().parse(value) to .map() on untrusted data.
Test The Orchestration
- Use entity mock builders when available; otherwise build schema-valid fixtures.
- Test RTK Query endpoints, thunks, or their integration according to the chosen orchestration.
- When reducers are involved, create a minimal local store or use an existing domain test harness.
- Never import an app store or app alias into a domain test.
- Assert the validated result, cache entry, and any hydrated slice that the orchestration owns.
- Cover transport failure, invalid collection shape, and invalid entity data when relevant.
Signals
- GitHub stars
- 618
- Forks
- 490
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
ddd-data-layer-advanced- Source
- github.com/ledgerhq/ledger-live