0

我们正在使用 graphql .net (Apollo Server)

是一种更改 URL 端点的方法吗?

所以从

http://localhost:xxx/graphql

我希望它是

http://localhost:xxx/newEndpoint

4

1 回答 1

0

好的,我刚刚想通了,这很简单。

在服务器端,您所要做的就是在配置服务器时说明您想要的端点。

app.UseGraphQL<YourSchema>("/yourNewEndPoint");

在客户端,您还需要修改您传递给 httpLink 的 uri

    const http = httpLink.create({
        uri: 'http://localhost:port/yourNewEndPoint'
    });
于 2020-01-06T15:40:46.053 回答