Skip to content

Commit

Permalink
Merge branch 'master' into hwillson/preserve-stitching-errors
Browse files Browse the repository at this point in the history
  • Loading branch information
hwillson committed Mar 26, 2019
2 parents 7fa081e + 305466b commit 1aee6c2
Show file tree
Hide file tree
Showing 15 changed files with 13,538 additions and 74 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,8 @@
* Fixes a bug where schemas with scalars could not be merged when passed to
`mergeSchemas` as a string or `GraphQLSchema`. <br/>
[@hayes](https://github.com/hayes) in [#1062](https://github.com/apollographql/graphql-tools/pull/1062)
* Make `mergeSchemas` optionally merge directive definitions. <br/>
[@freiksenet](https://github.com/freiksenet) in [#1003](https://github.com/apollographql/graphql-tools/pull/1003)

### 4.0.4

Expand Down
3 changes: 2 additions & 1 deletion docs/.gitignore
Expand Up @@ -4,7 +4,8 @@ db.json
*.log
node_modules/
public/*
!public/_redirects
.deploy*/
docs.json
_multiconfig.yml
.cache
!package-lock.json
2 changes: 1 addition & 1 deletion docs/.nvmrc
@@ -1 +1 @@
8
10
38 changes: 0 additions & 38 deletions docs/_config.yml

This file was deleted.

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

This file was deleted.

50 changes: 50 additions & 0 deletions docs/gatsby-config.js
@@ -0,0 +1,50 @@
module.exports = {
__experimentalThemes: [
{
resolve: 'gatsby-theme-apollo-docs',
options: {
root: __dirname,
subtitle: 'GraphQL Tools',
description: 'A guide to using GraphQL Tools',
contentDir: 'docs/source',
basePath: '/docs/graphql-tools',
githubRepo: 'apollographql/graphql-tools',
sidebarCategories: {
null: [
'index',
'generate-schema',
'resolvers',
'scalars',
'mocking',
'connectors',
'schema-directives',
'schema-delegation',
'remote-schemas',
'schema-transforms',
'schema-stitching'
],
Related: [
{
title: 'Monitoring and caching',
href: 'https://www.apollographql.com/docs/engine/setup-node.html'
},
{
title: 'Apollo Server',
href: 'https://www.apollographql.com/docs/apollo-server/'
},
{

title: 'GraphQL Subscriptions',
href: 'https://www.apollographql.com/docs/graphql-subscriptions/'
},
{

title: 'Production deployment',
href: 'https://dev-blog.apollodata.com/graphql-over-rest-with-node-heroku-and-apollo-engine-fb8581f8d77f'
}
]
}
}
}
]
};

0 comments on commit 1aee6c2

Please sign in to comment.