The purpose of this repository is to provide a centralized strategy focused on understanding a given subgraph library's compatibility against the Apollo Federation Specification.
The following open-source GraphQL server libraries provide support for Apollo Federation and are included in our test suite.
Language | Framework | _service | @key (single) | @key (multi) | @key (composite) | @requires | @provides | ftv1 |
---|---|---|---|---|---|---|---|---|
AppSync | aws-appsync | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ |
Dotnet | graphql-dotnet | ✔️ | ✔️ | ❌ | ❌ | ❌ | ❌ | ❌ |
Elixir | absinthe_federation | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ (coming soon) |
Go | gqlgen | ✔️ | ✔️* | ✔️* | ❌ | ✔️ | ✔️ | ❌ |
JavaScript | apollo-server | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ |
JavaScript | express-graphql | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ |
Java | federation-jvm | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ |
Java / Kotlin | dgs | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ |
Kotlin | graphql-kotlin | ✔️ | ✔️* | ✔️* | ✔️* | ✔️ | ✔️ | ✔️ |
PHP | apollo-federation-php | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ |
Python | graphene | ✔️ | ✔️ | ✔️ | ❌ | ✔️ | ✔️ | ❌ |
Python | ariadne | ✔️ | ✔️* | ✔️* | ✔️* | ✔️ | ✔️ | ❌ |
Python | strawberry-graphql | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ |
Ruby | apollo-federation-ruby | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ |
Rust | async-graphql | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ |
Scala | caliban | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ |
* Implementation does not support multiple @key
definitions, but all types of @key
definitions are supported
If you want to see a library added to this list, feel free to open an Issue or check our our Apollo Federation Library Maintainers Implementation Guide to see about submitting a PR for your library!
This repository contains a structured testing suite based on a federated schema that covers the Apollo Federation Specification. The federated schema is constructued of 3 subgraphs (users
, inventory
and products
) that will be started and used to test various libraries that support Apollo Federation. The users
and inventory
subgraphs are provided by this repository in addition to the graph router instance. Library implementors will each implement the products
schema and provide a docker file that can be used with docker compose
; templates for these files are provided along with examples.
type User @key(fields: "email") {
email: ID!
name: String
totalProductsCreated: Int
}
extend type Product @key(fields: "id") {
id: ID! @external
dimensions: ProductDimension @external
delivery(zip: String): DeliveryEstimates
@requires(fields: "dimensions { size weight }")
}
type ProductDimension {
size: String
weight: Float
}
type DeliveryEstimates {
estimatedDelivery: String
fastestDelivery: String
}
type Product
@key(fields: "id")
@key(fields: "sku package")
@key(fields: "sku variation { id }") {
id: ID!
sku: String
package: String
variation: ProductVariation
dimensions: ProductDimension
createdBy: User @provides(fields: "totalProductsCreated")
}
type ProductVariation {
id: ID!
}
type ProductDimension {
size: String
weight: Float
}
extend type Query {
product(id: ID!): Product
}
extend type User @key(fields: "email") {
email: ID! @external
totalProductsCreated: Int @external
}
_service
- support arover subgraph introspect
command (this is the Apollo Federation equivalent of Introspection for subgraphs)query { _service { sdl } }
@key
and_entities
- support defining a single@key
, multiple@key
definitionss, multiple-fields@key
and a complex fields@key
. Below is an example of the single@key
query that is sent from the graph router to the implementingproducts
subgraph (the variables will be changed to test all@key
definitions):
query ($representations: [_Any!]!) {
_entities(representations: [{ "__typename": "Product", "id": "apollo-federation" }]) {
...on Product {sku package variation { id } dimensions { size weight }
}
}
}
- @requires - support defining complex fields
- This will be tested through a query covering Product.delivery where the library implementors dimensions { size weight } will need to be an expected { size: "1", weight: 1 } to pass. Example query that will be sent directly to
products
subgraph.
- This will be tested through a query covering Product.delivery where the library implementors dimensions { size weight } will need to be an expected { size: "1", weight: 1 } to pass. Example query that will be sent directly to
query ($id: ID!) {
product(id: $id) {
dimensions {
size
weight
}
}
}
- @provides - This will be covered by the library implementors at Product.createdBy where they will be expected to provide the User.totalProductsCreated to be anything other than 4
query ($id: ID!) {
product(id: $id) {
createdBy {
email
totalProductsCreated
}
}
}
- @external - This is covered in the tests above.
extends
or@extends
- This is covered in theproducts
subgraph extension of theUser
ftv1
(Federated Traces version 1) - A query with theapollo-federated-include-trace:ftv1
header will be sent to theproducts
subgraph which should return a value for theextensions.ftv1
in the result.- NOTE: In the initial release of this testing strategy, we will not be validating
ftv1
to ensure it's in the proper format
- NOTE: In the initial release of this testing strategy, we will not be validating
npm install
npm run setup
npm run build
- compiles typescript code and composes supergraph SDLnpm run docker
- build docker images forgraph-router
,users
andinventory
npm run test
will test all folders in the implementations
folder. You can provide a comma separated string as an additional argument to test only specific libraries.
A results.md
file will be created that displays the testing results
Fork this repository and navigate to the Apollo Federation Library Maintainers Implementation Guide for implementation instructions. Once you've completed the implementations instructions, feel free to create a PR and we'll review it. If you have any questions please open a GitHub issue on this repository.