Federated Schemas
Learn about the different types of GraphQL schemas
A federated supergraph uses multiple "types" of GraphQL schemas:
- Subgraph schemas. Each subgraph has a distinct schema that indicates which types and fields of your composed supergraph it can resolve.
- These are the only schemas that your teams define manually.
- Supergraph schema. This schema combines all of the types and fields from your subgraph schemas, plus some federation-specific information that tells your router which subgraphs can resolve which fields.
- This schema is the result of performing composition on your collection of subgraph schemas.
- API schema. This schema is similar to the supergraph schema, but it omits federation-specific types, fields, and directives that are considered "machinery" and are not part of your public API.
- This is the schema that your router exposes to clients, which don't need to know internal implementation details about your graph.
Let's look at an example!
Subgraph schemas
Below are example schemas for three subgraphs in an e-commerce company's supergraph. Each subgraph is implemented as a separate GraphQL API:
type Query {me: User}type User @key(fields: "id") {id: ID!username: String! @shareable}# (Subgraph schemas include# this to opt in to# Federation 2 features.)extend schema@link(url: "https://specs.apollo.dev/federation/v2.3",import: ["@key", "@shareable"])
type Query {topProducts(first: Int = 5): [Product]}type Product @key(fields: "upc") {upc: String!name: String!price: Int}extend schema@link(url: "https://specs.apollo.dev/federation/v2.3",import: ["@key", "@shareable"])
type Review {body: Stringauthor: User @provides(fields: "username")product: Product}type User @key(fields: "id") {id: ID!username: String! @externalreviews: [Review]}type Product @key(fields: "upc") {upc: String!reviews: [Review]}# (This subgraph uses additional# federated directives)extend schema@link(url: "https://specs.apollo.dev/federation/v2.3",import: ["@key", "@shareable", "@provides", "@external"])
As these schemas show, multiple subgraphs can contribute unique fields to a single type. For example, the Products subgraph and the Reviews subgraph both contribute fields to the Product
type.
Supergraph schema
The supergraph schema is the output of schema composition. It serves the following purposes:
- It provides your router with the name and endpoint URL for each of your subgraphs.
- It includes all types and fields defined by all of your subgraphs.
- It tells your router which of your subgraphs can resolve which GraphQL fields.
Here's the supergraph schema composed with the subgraph schemas above:
As you can see, the supergraph schema includes a lot of Federation-specific additions! These additions are used only by the router, and you'll never need to add them manually.
API schema
The router uses its supergraph schema to produce an API schema, which it exposes to clients as your actual GraphQL API. This schema cleanly and logically represents the combination of your subgraph schemas:
type Product {name: String!price: Intreviews: [Review]upc: String!}type Query {me: UsertopProducts(first: Int = 5): [Product]}type Review {author: Userbody: Stringproduct: Product}type User {id: ID!reviews: [Review]username: String!}
Unlike the supergraph schema, this schema hides the fact that your GraphQL API is composed of multiple distinct GraphQL APIs.