Skip to content

Commit 6ecbcf6

Browse files
authored
chore: use explicit index files (#10521)
1 parent bff6629 commit 6ecbcf6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

guides/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ heavy immutability tricks such as spread, slice, and map.
183183

184184
## Mutation Management {#mutations}
185185

186-
[Mutation](./the-manual/mutations) is handled within controlled contexts. The data to edit is "checked out" for editing, giving access to a mutable version. Local edits are seamlessly preserved if the user navigates away and returns without saving, and the changes are buffered from appearing elsewhere in your app until they are also committed to the server.
186+
[Mutation](./the-manual/mutations/index.md) is handled within controlled contexts. The data to edit is "checked out" for editing, giving access to a mutable version. Local edits are seamlessly preserved if the user navigates away and returns without saving, and the changes are buffered from appearing elsewhere in your app until they are also committed to the server.
187187

188188
```ts
189189
import { checkout } from '@warp-drive/core/reactive';

guides/the-manual/caching/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ By default, The Graph uses **upsert semantics** for a relationship payload with
277277

278278
This means that a field being absent from a relationship payload is semantically different from that field being present but with a value of `null` or an empty array. Being not-present means we do not replace the existing value.
279279

280-
The Graph also has the ability to receive op-codes that deliver more granular modifications to relationships to add or remove specific values. For instance, if your application were to use WebSockets to receive streaming changes to a relationship, those changes could be applied directly without needing to fully replace the existing value. We'll cover these operations in the guide for [RealTime Support](../realtime).
280+
The Graph also has the ability to receive op-codes that deliver more granular modifications to relationships to add or remove specific values. For instance, if your application were to use WebSockets to receive streaming changes to a relationship, those changes could be applied directly without needing to fully replace the existing value. We'll cover these operations in the guide for [RealTime Support](../realtime/index.md).
281281

282282
## What about Mutation?
283283

0 commit comments

Comments
 (0)