http-apollo-link未向我的Graphql服务器发送请求

时间:2018-09-01 06:22:54

标签: apollo react-apollo

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

enter image description here

0 个答案:

没有答案