From df371e0861f86143ceb07693da19247ff867bf60 Mon Sep 17 00:00:00 2001 From: David Costa Date: Tue, 23 Jun 2020 19:17:15 -0300 Subject: [PATCH] Add imports of introspectSchema and makeRemoteE... # Add imports of introspectSchema and makeRemoteExecutableSchema This will help how do know where to import those functions --- docs/source/index.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/source/index.mdx b/docs/source/index.mdx index 943c8b63aa..4b1412b32d 100644 --- a/docs/source/index.mdx +++ b/docs/source/index.mdx @@ -49,6 +49,8 @@ You can also use Apollo Link with `graphql-tools` to facilitate schema stitching ```js import { HttpLink } from 'apollo-link-http'; +import { introspectSchema, makeRemoteExecutableSchema } from 'apollo-server'; + import fetch from 'node-fetch'; const link = new HttpLink({ uri: 'http://localhost:4000/graphql', fetch });