Skip to content

Commit

Permalink
Merge branch 'master' into fragment-variables-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GreenGremlin authored Mar 27, 2019
2 parents 387347d + 3484b65 commit a8e3db7
Show file tree
Hide file tree
Showing 15 changed files with 12,295 additions and 7,053 deletions.
1 change: 0 additions & 1 deletion .github/CODEOWNERS

This file was deleted.

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ db.json
docs.json
*.log
docs/public/*
!docs/public/_redirects
.idea/

junit.xml
Expand Down
3 changes: 2 additions & 1 deletion docs/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
_multiconfig.yml
.cache
public
71 changes: 0 additions & 71 deletions docs/_config.yml

This file was deleted.

1 change: 0 additions & 1 deletion docs/assets/theme-colors.less

This file was deleted.

62 changes: 62 additions & 0 deletions docs/gatsby-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
module.exports = {
__experimentalThemes: [
{
resolve: 'gatsby-theme-apollo-docs',
options: {
root: __dirname,
docs: require('./docs.json'),
subtitle: 'Apollo Client',
description: 'A guide to using the Apollo GraphQL Client with React',
contentDir: 'docs/source',
basePath: '/docs/react',
githubRepo: 'apollographql/apollo-client',
versions: ['2.4', '2.5'],
typescriptApiBox: {
filepathPrefix: 'packages/apollo-client/src/',
},
sidebarCategories: {
null: [
'index',
'why-apollo',
'integrations',
'react-apollo-migration',
],
Essentials: [
'essentials/get-started',
'essentials/queries',
'essentials/mutations',
'essentials/local-state',
],
Features: [
'features/error-handling',
'features/pagination',
'features/optimistic-ui',
'features/server-side-rendering',
'features/developer-tooling',
'features/defer-support',
],
Advanced: [
'advanced/boost-migration',
'advanced/subscriptions',
'advanced/network-layer',
'advanced/caching',
'advanced/fragments',
],
Recipes: [
'recipes/authentication',
'recipes/testing',
'recipes/static-typing',
'recipes/performance',
'recipes/react-native',
'recipes/babel',
'recipes/webpack',
'recipes/meteor',
'recipes/recompose',
'recipes/2.0-migration',
],
API: ['api/apollo-client', 'api/react-apollo'],
},
},
},
],
};
Loading

0 comments on commit a8e3db7

Please sign in to comment.