Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remaining AC3 documentation updates #6429

Merged
merged 53 commits into from
Jul 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
1bc7aff
Adjust explore section to align with top level docs sections
hwillson Mar 2, 2020
9593336
Remove Pupstagram references
hwillson Mar 2, 2020
e03ed55
Update `new ApolloClient` examples to include a cache
hwillson Jul 13, 2020
c18ad5f
Replace intro `cacheRedirects` example with `TypePolicies`
hwillson Mar 2, 2020
4f75961
Updates to use the AC3 ready Coinbase example
hwillson Mar 3, 2020
d447d24
Wire updated example apps into Queries section
hwillson Mar 3, 2020
8130403
Adjust the intro mutations section to use cache.modify
hwillson Mar 4, 2020
29da64d
Prepare local state section for cache policies + reactive vars
hwillson Jun 10, 2020
264b4cc
Add local resolver deprecation warning to local resolvers section
hwillson Jun 11, 2020
220fdf6
Add reactive variables section
hwillson Jun 11, 2020
dbe5b5f
Initial querying local state content
hwillson Jun 11, 2020
6f0b340
Initialize the cache + local data query flow with field policies
hwillson Jun 11, 2020
bd81162
Add "Handling @client fields with field policies" section
hwillson Jun 15, 2020
97c600a
Add "Integrating `@client` into remote queries" section
hwillson Jun 16, 2020
4233175
Update `cache.evict()` examples to use `EvictOptions`
hwillson Jun 16, 2020
43e84de
Remove broken Meteor integration docs
hwillson Jun 16, 2020
b79a533
Update to the latest docs theme
hwillson Jun 17, 2020
43f02f5
Fix broken links
hwillson Jun 16, 2020
084be4e
Remove Apollo Component code samples
hwillson Jun 17, 2020
767ff4d
Remove no longer valid local state fragment link
hwillson Jun 17, 2020
7956b77
Add dangling references section
hwillson Jun 18, 2020
fc6b63a
Explain `cache.identify`
hwillson Jun 18, 2020
777ba26
Add modifying fields (cache.modify) section
hwillson Jun 19, 2020
4979f99
Updated "Handling `@client` fields with the cache" section
hwillson Jun 19, 2020
3b50bbf
Update "Using `@client` fields as variables" section
hwillson Jun 19, 2020
d7f5b26
New "Using reactive variables to track `@client` state" section
hwillson Jun 20, 2020
0471737
Re-arrange the local state section
hwillson Jun 23, 2020
eca608a
Fully replace `cacheRedirects` examples with field policies
hwillson Jun 25, 2020
22bd499
Remove broken query splitting section
hwillson Jun 25, 2020
9f5e066
Update to latest docs theme
hwillson Jun 30, 2020
d9a2955
New `InMemoryCache` API section
hwillson Jun 26, 2020
8bdf676
Edits to local state overview
Jun 30, 2020
fb90369
Incorporate review from hwillson
Jun 30, 2020
cdd7c89
Update to the latest docs theme
hwillson Jun 17, 2020
fee5638
Update to latest docs theme
hwillson Jun 25, 2020
20227d6
WIP on Managing state with field policies
Jul 1, 2020
905f1a3
More WIP on managing state with field policies
Jul 2, 2020
7ba4f68
Get local-only fields article ready for review
Jul 2, 2020
8cca447
Refactor some content
Jul 7, 2020
523cf24
In-progress edits to core caching articles
Jul 7, 2020
a6cead7
Clarify use of cache.identify
Jul 7, 2020
182f60d
Clarify local-only field content
Jul 7, 2020
7fbe7a1
Fold querying and updating into local-only fields article
Jul 8, 2020
1b4451f
Fix broken links
Jul 8, 2020
2524fa4
Updates to reactive variables article
Jul 9, 2020
fefe916
Fix a word
Jul 9, 2020
ba40a80
Miscellaneous IA and formatting cleanup
Jul 10, 2020
bdc71e1
Edits to AC intro and getting started
Jul 11, 2020
bf9d073
Add missing dependency for ink
Jul 11, 2020
3079d15
Fix broken links
Jul 13, 2020
97457cc
update link checking exceptions and add redirect
Jul 13, 2020
64c725b
Add some missing dependencies
Jul 13, 2020
69f2951
Add a redirect for 3.0 beta docs to root
trevorblades Jul 14, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
"editor.rulers": [80],
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"typescript.tsdk": "../node_modules/typescript/lib"
"typescript.tsdk": "../node_modules/typescript/lib",
"cSpell.enableFiletypes": [
"mdx"
]
}
34 changes: 22 additions & 12 deletions docs/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,36 +11,44 @@ module.exports = {
subtitle: 'Client (React)',
description: 'A guide to using the Apollo GraphQL Client with React',
githubRepo: 'apollographql/apollo-client',
localVersion: '3.0 beta',
defaultVersion: '2.6',
defaultVersion: '3.0',
versions: {
'2.6': 'version-2.6',
'2.5': 'version-2.5',
'2.4': 'version-2.4',
},
checkLinksOptions: {
exceptions: [
'/api/apollo-client/',
'/v3.0-beta/api/core/',
'/api/core/ApolloClient/',
'/v2.6/api/apollo-client/',
'/v2.5/api/apollo-client/',
'/v2.4/api/apollo-client/',
],
},
sidebarCategories: {
null: ['index', 'why-apollo', 'get-started'],
'Fetching data': [
'Fetching': [
'data/queries',
'data/mutations',
'data/local-state',
'data/subscriptions',
'data/pagination',
'data/fragments',
'data/error-handling',
],
Caching: [
'caching/cache-configuration',
'caching/cache-interaction',
'caching/garbage-collection',
'caching/cache-field-behavior',
'caching/cache-interaction'],
'caching/advanced-topics'
],
'Local State': [
'local-state/local-state-management',
'local-state/managing-state-with-field-policies',
'local-state/reactive-variables',
'local-state/client-side-schema',
'local-state/local-resolvers'
],
'Development & Testing': [
'development-testing/static-typing',
'development-testing/testing',
Expand All @@ -56,18 +64,24 @@ module.exports = {
Integrations: [
'integrations/integrations',
'integrations/react-native',
'integrations/meteor',
'integrations/webpack',
],
Networking: [
'networking/basic-http-networking',
'networking/advanced-http-networking',
'networking/authentication',
],
Migrating: [
'migrating/apollo-client-3-migration',
'migrating/hooks-migration'
],
'API - Core': [
'api/core/ApolloClient',
'api/core/ObservableQuery'
],
'API - Cache': [
'api/cache/InMemoryCache'
],
'API - React': [
'api/react/hooks',
'api/react/testing',
Expand All @@ -85,10 +99,6 @@ module.exports = {
'api/link/apollo-link-schema',
'api/link/apollo-link-ws'
],
Migrating: [
'migrating/apollo-client-3-migration',
'migrating/hooks-migration'
],
},
},
},
Expand Down
Loading