const httpLink = new HttpLink({
uri: 'http://localhost:4000'
});
const client = new ApolloClient({
link: httpLink
});
我的pyramida graphql服务器正在http://localhost:4000
上运行。我正在使用apollo-link-http
软件包。 Apollo客户端未将请求发送到我的pyramida graphql服务器。我的反应是应用程序正在localhost:3001
上运行。 Apollo客户端正在3001上发送请求。它应将请求发送到localhost:4000
(已编辑)
enter image description here