Skip to content

Commit

Permalink
Add changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Sep 24, 2024
1 parent 45b1bc1 commit 1c0ecbf
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .changeset/nasty-camels-pay.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
"@apollo/client": minor
---

Introduces data masking into Apollo Client. Data masking allows components to access only the data they asked for through GraphQL fragments. This prevents coupling between components that might otherwise implicitly rely on fields not requested by the component. Data masking also provides the benefit that masked fields only rerender components that ask for the field.

To enable data masking in Apollo Client, set the `dataMasking` option to `true`.

```ts
new ApolloClient({
dataMasking: true,
// ... other options
})
```

You can selectively disable data masking using the `@unmask` directive. Apply this to any named fragment to receive all fields requested by the fragment.

```graphql
query {
user {
id
...UserFields @unmask
}
}
```

To help with migration, use the `@unmask` migrate mode which will add warnings when accessing fields that would otherwise be masked.

```graphql
query {
user {
id
...UserFields @unmask(mode: "migrate")
}
}
```

0 comments on commit 1c0ecbf

Please sign in to comment.