From 793bb202a108cf9ebe8e5e0eccf7d62ed9a75d65 Mon Sep 17 00:00:00 2001 From: Maria Elisabeth Schreiber Date: Fri, 22 Nov 2024 16:00:49 -0700 Subject: [PATCH] Add solutions repo links --- docs/source/integrations/mern.mdx | 4 +++- docs/source/performance/{apq.md => apq.mdx} | 7 +++++++ 2 files changed, 10 insertions(+), 1 deletion(-) rename docs/source/performance/{apq.md => apq.mdx} (97%) diff --git a/docs/source/integrations/mern.mdx b/docs/source/integrations/mern.mdx index a69b9d04df6..303f6a7e0ef 100644 --- a/docs/source/integrations/mern.mdx +++ b/docs/source/integrations/mern.mdx @@ -251,4 +251,6 @@ Congrats on completing the tutorial! 🎉 Incorporating a GraphQL server into yo While this tutorial only covers the server portion of the MERN stack, the `/client` folder in the [completed example](#complete-example) picks up where the tutorial left off and implements [`@apollo/client`](/react/) to interact with the server. For more information on implementing the Apollo Client, head to the [getting started docs](/react/get-started). -For more hands-on learning on GraphQL and Apollo's server and client libraries, check out our interactive [Odyssey tutorials](https://www.apollographql.com/tutorials/). +For more hands-on learning on GraphQL and Apollo's server and client libraries, check out our interactive [Odyssey tutorials](https://www.apollographql.com/tutorials/). For an example that uses MongoDB Atlas in a subgraph and makes data available via the GraphOS Router, check out the [Apollo Solutions repository](https://github.com/apollosolutions/example-subgraph-mongodb). + + diff --git a/docs/source/performance/apq.md b/docs/source/performance/apq.mdx similarity index 97% rename from docs/source/performance/apq.md rename to docs/source/performance/apq.mdx index 64f111b4628..52e20e6a555 100644 --- a/docs/source/performance/apq.md +++ b/docs/source/performance/apq.mdx @@ -234,3 +234,10 @@ const server = new ApolloServer({ persistedQueries: false, // highlight-line }); ``` + +## Additional resources + +This [Apollo Solutions repository](https://github.com/apollosolutions/apq-hasher) provides a simple web app for generating the hash of a query that is used in APQ requests. +This demonstrates how Apollo Client formats and hashes queries. + +