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

Commit

Permalink
Remove references to GitHunt, which has been sunset.
Browse files Browse the repository at this point in the history
  • Loading branch information
abernix authored Mar 25, 2020
1 parent 464b387 commit 9a07942
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/source/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import { InMemoryCache } from 'apollo-cache-inmemory';
import { createHttpLink } from 'apollo-link-http';

const client = new ApolloClient({
link: createHttpLink({ uri: 'http://api.githunt.com/graphql' }),
link: createHttpLink({ uri: 'http://localhost:4000/graphql' }),
cache: new InMemoryCache()
});
```
Expand All @@ -51,7 +51,7 @@ You can also use Apollo Link with `graphql-tools` to facilitate schema stitching
import { HttpLink } from 'apollo-link-http';
import fetch from 'node-fetch';

const link = new HttpLink({ uri: 'http://api.githunt.com/graphql', fetch });
const link = new HttpLink({ uri: 'http://localhost:4000/graphql', fetch });

const schema = await introspectSchema(link);

Expand All @@ -78,7 +78,7 @@ import { execute } from 'apollo-link';
import { HttpLink } from 'apollo-link-http';

const link = new HttpLink({
uri: 'http://api.githunt.com/graphql'
uri: 'http://localhost:4000/graphql'
});

const fetcher = (operation) => {
Expand All @@ -105,7 +105,7 @@ import {HttpLink} from 'apollo-link-http';
import {parse} from 'graphql';

const link = new HttpLink({
uri: 'http://api.githunt.com/graphql'
uri: 'http://localhost:4000/graphql'
});

const source = new RecordSource();
Expand Down Expand Up @@ -134,7 +134,7 @@ import { execute, makePromise } from 'apollo-link';
import { HttpLink } from 'apollo-link-http';
import gql from 'graphql-tag';

const uri = 'http://api.githunt.com/graphql';
const uri = 'http://localhost:4000/graphql';
const link = new HttpLink({ uri });

const operation = {
Expand Down

0 comments on commit 9a07942

Please sign in to comment.