我正在使用 apollo 服务器和 graphql 并且有必要设置超时,所以我将它与 express 一起使用:
const server = app.listen({ port: 4000 }, () =>
console.log( `The server is running in http://localhost:4000${server.graphqlPath}`));
server.setTimeout(60000);
这可以设置超时,但我在 Apollo Server Playground 中收到以下消息:
{
"error": "Failed to fetch. Please check your connection"
}
但是我认为只发送该文本是不行的,所以我可以编辑该消息或为我收到的错误添加一些属性吗?,我花了一段时间在某些地方搜索但没有成功。