Skip to content

Commit

Permalink
Merge pull request #1140 from apollographql/federation
Browse files Browse the repository at this point in the history
Federation: Add deprecation notice for schema stitching
  • Loading branch information
trevorblades committed May 30, 2019
2 parents bb74891 + 8c04592 commit b345486
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/source/schema-stitching.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
---
title: Schema stitching
title: Schema stitching (deprecated)
description: Combining multiple GraphQL APIs into one
---

> **Deprecated:** Federation is our replacement for schema stitching that enables developers to declaratively compose a distributed graph. Learn why in our [blog post](https://blog.apollographql.com/apollo-federation-f260cf525d21) and [how to migrate](https://www.apollographql.com/docs/apollo-server/federation/migrating-from-stitching/) in the federation guide.
Schema stitching is the process of creating a single GraphQL schema from multiple underlying GraphQL APIs.

One of the main benefits of GraphQL is that we can query all of our data as part of one schema, and get everything we need in one request. But as the schema grows, it might become cumbersome to manage it all as one codebase, and it starts to make sense to split it into different modules. We may also want to decompose your schema into separate microservices, which can be developed and deployed independently.
Expand Down

0 comments on commit b345486

Please sign in to comment.