Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在使用 graphql .net (Apollo Server)
是一种更改 URL 端点的方法吗?
所以从
http://localhost:xxx/graphql
我希望它是
http://localhost:xxx/newEndpoint
好的,我刚刚想通了,这很简单。
在服务器端,您所要做的就是在配置服务器时说明您想要的端点。
app.UseGraphQL<YourSchema>("/yourNewEndPoint");
在客户端,您还需要修改您传递给 httpLink 的 uri
const http = httpLink.create({ uri: 'http://localhost:port/yourNewEndPoint' });