Skip to content

Commit

Permalink
tidy up release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecAivazis committed Jan 25, 2023
1 parent 94d9f9b commit 3a1309d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions site/src/routes/guides/release-notes/+page.svx
Original file line number Diff line number Diff line change
Expand Up @@ -217,16 +217,16 @@ config values into a single `watchSchema` object:
- apiUrl: "http://my.awesome.app.com",
- schemaPollInterval: 6000,
- schemaPollHeaders: {
- Authorization: (env) => `Bearer ${env.TOKEN}`,
- },
+ watchSchema {
- Authorization: (env) => `Bearer ${env.TOKEN}`
- }
+ watchSchema: {
+ url: "http://my.awesome.app.com",
+ interval: 6000,
+ headers: {
+ Authorization: (env) => `Bearer ${env.TOKEN}`,
+ Authorization: (env) => `Bearer ${env.TOKEN}`
+ }
+ },
}
+ }
}
```

### Imperative Cache Reworked
Expand Down Expand Up @@ -283,7 +283,7 @@ has become mostly used for "lazy" stores that don't fetch automatically. On top
new imperative cache api relies heavily on `graphql` documents which would mean a lot of accidental
loading. At least this way everything is very explicit.

### pagination options in `customStores` config have been changed
### Pagination Options In `customStores` Config Have Been Changed

There is no more distinction between forwards and backwards cursor pagination
so the options have been merged
Expand Down

0 comments on commit 3a1309d

Please sign in to comment.