Проблемы с началом работы https://github.com/apollographql/gatsby-theme-apollo/tree/master/packages/gatsby-theme-apollo
Выполнено ШАГОВ:
> gatsby new atest
> cd atest
> npm install gatsby-theme-apollo @apollo/client
> make new directory: atest/src/gatsby-theme-apollo
> make new file in directory: client.js
> copy paste content from instructions without change:
import fetch from 'isomorphic-fetch';
import {ApolloClient, HttpLink, InMemoryCache} from '@apollo/client';
const client = new ApolloClient({
cache: new InMemoryCache(),
link: new HttpLink({
uri: 'https://api.spacex.land/graphql/',
fetch
})
})
в браузере: проверено, что spacex api является терминалом : gatsbyvelop browser: Перейдите на локальный хост: 8000 / ___ graphql
Запросы доступны для сайта в порядке. Однако запросы spacex недоступны. Какие-нибудь шаги отсутствуют? (На узле ubuntu 18.04 12.14.1, gatsby 2.19.7)