A repo to test subgraph libraries compatibility with the Apollo Federation Specification
TypeScriptMIT
Apollo Federation Subgraph Compatibility Testing Strategy
The purpose of this repository is to provide a centralized strategy focused on understanding a given subgraph's compatibility against the Apollo Federation Specification.
The following open-source GraphQL server libraries and hosted subgraphs provide support for Apollo Federation and are included in our test suite. If you want to see additional implementations added to this list, feel free to open an Issue or check out our Apollo Federation Library Maintainers Implementation Guide to find information on how to submit a PR for your implementation!
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.
Must be seen as a valid schema directive in the SDL returned by the subgraph. Is verified by checking for its inclusion in the query { _service { sdl } } result.
Additional functionality to fully support Apollo Federation
@key and _entities - multiple @key definitions, multiple-fields @key and a composite object fields @key
Below is an example of a multiple fields @key query that is sent from the graph router to the implementing products subgraph:
@requires - directive used to provide additional non-key information from one subgraph to the computed fields in another subgraph, should support defining complex fields
This will be covered by the subgraph implementors at Product.createdBy where they will be expected to provide the User.averageProductsCreatedPerYear using yearsOfEmployment value provided by the user graph and the totalProductsCreated value from the implementing products subgraph. Example query that will be sent directly to products subgraph.
@provides - directive used for path denormalization
This will be covered by the subgraph implementors at Product.createdBy where they will be expected to provide the User.totalProductsCreated to be anythingother than 4
@external - directive used to mark fields as external (defined in other subgraph). This is covered in the tests above.
extends or @extends - ability to extend the type that is defined in other subgraph
This is covered in the products subgraph extension of the User
Federated Traces version 1 (ftv1)
A query with the apollo-federated-include-trace:ftv1 header will be sent to the products subgraph which should return a value for the extensions.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
@tag - directive used to add arbitrary metadata information to the schema elements. Used by Apollo Contracts to expose different variants of the schema.
Cannot be @federation__ namespaced - this directive has to be named consistently as @tag across all the subgraphs
Must be seen as a valid schema directive in the SDL returned by the subgraph. Is verified by checking for its inclusion in the query { _service { sdl } } result.
@shareable - directive that provides ability to relax single source of truth for entity fields
Must be seen as a valid schema directive in the SDL returned by the subgraph. Is verified by checking for its inclusion in the query { _service { sdl } } result. Must also be able to query shareable types.
@override - directive used for migrating fields between subgraphs
Must be seen as a valid schema directive in the SDL returned by the subgraph. Is verified by checking for its inclusion in the query { _service { sdl } } result. Must also be able to return the value of an overridden field.
@inaccessible - directive used to hide fields from the supergraph
Cannot be @federation__ namespaced - this directive has to be named consistently as @inacessible across all the subgraphs
Must be seen as a valid schema directive in the SDL returned by the subgraph. Is verified by checking for its inclusion in the query { _service { sdl } } result. Must also be able to query inaccessible fields from the Products schema.
Setting up the testing suite
npm install
npm run setup
npm run build - compiles typescript code and composes supergraph SDL
npm run docker - build docker images for graph-router, users and inventory
Running the Test
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 implementations.
Test Results
A results.md file will be created that contains the testing results.
Contributing a new library to this test suite
Fork this repository and navigate to the Apollo Federation Subgraph 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.