From d3ad3c874bc2e7320fc56dd0f82138289d2434dc Mon Sep 17 00:00:00 2001 From: starptech Date: Fri, 21 May 2021 19:31:40 +0200 Subject: [PATCH] add query that impact all services --- examples/apollo-federation/README.md | 13 ++++++++++++- examples/apollo-managed-federation/README.md | 13 ++++++++++++- examples/mercurius-federation/README.md | 13 ++++++++++++- 3 files changed, 36 insertions(+), 3 deletions(-) diff --git a/examples/apollo-federation/README.md b/examples/apollo-federation/README.md index c5d6678..6ef11ca 100644 --- a/examples/apollo-federation/README.md +++ b/examples/apollo-federation/README.md @@ -12,7 +12,18 @@ Try ```graphql { topProducts { - upc + name + inStock + shippingEstimate + reviews { + id + author { + name + } + product { + name + } + } } } ``` diff --git a/examples/apollo-managed-federation/README.md b/examples/apollo-managed-federation/README.md index 28ae871..081f79c 100644 --- a/examples/apollo-managed-federation/README.md +++ b/examples/apollo-managed-federation/README.md @@ -12,7 +12,18 @@ Try ```graphql { topProducts { - upc + name + inStock + shippingEstimate + reviews { + id + author { + name + } + product { + name + } + } } } ``` diff --git a/examples/mercurius-federation/README.md b/examples/mercurius-federation/README.md index 43ef1f9..184504f 100644 --- a/examples/mercurius-federation/README.md +++ b/examples/mercurius-federation/README.md @@ -12,7 +12,18 @@ Try ```graphql { topProducts { - upc + name + inStock + shippingEstimate + reviews { + id + author { + name + } + product { + name + } + } } } ```