Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

docs(apollo-link): Add imports of introspectSchema and makeRemoteE... #1288

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/source/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
Expand Down