From bc9b3ecc4148226ef92fa336377e0f3fa8eaeb3c Mon Sep 17 00:00:00 2001 From: Michael Staib Date: Mon, 13 Apr 2020 18:42:51 +0200 Subject: [PATCH] Fixed a little type `FIELD_DEFINITON` to `FIELD_DEFINITION` (#3974) --- docs/source/federation/federation-spec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/federation/federation-spec.md b/docs/source/federation/federation-spec.md index a118a4248bb..954ac3fcf59 100644 --- a/docs/source/federation/federation-spec.md +++ b/docs/source/federation/federation-spec.md @@ -276,7 +276,7 @@ When fetching `Review.product` from the Reviews service, it is possible to reque ### `@requires` ```graphql -directive @requires(fields: _FieldSet!) on FIELD_DEFINITON +directive @requires(fields: _FieldSet!) on FIELD_DEFINITION ``` The `@requires` directive is used to annotate the required input fieldset from a base type for a resolver. It is used to develop a query plan where the required fields may not be needed by the client, but the service may need additional information from other services. For example: