我正在尝试将timeout
设置为prisma-labs/graphql-request
。我已经尝试过此处描述的方式-https://github.com/prisma-labs/graphql-request/issues/103。
const client = new GraphQLClient(config.url, {
timeout: 30000,
headers: {
Authorization: `Bearer ${token}`
}
})
我的编译器抱怨超时没有直接出现在“选项”界面-https://github.com/prisma-labs/graphql-request/blob/master/src/types.ts#L7中。
我需要扩展“选项”界面以使用超时字段吗?