如何在 graphql-playground 中更改 websocket url(订阅)

Posted

技术标签:

【中文标题】如何在 graphql-playground 中更改 websocket url(订阅)【英文标题】:How to change websocket url in graphql-playground (subscriptions) 【发布时间】:2019-08-01 18:47:30 【问题描述】:

我想在graphql中更改graphql websocket端点,有人知道怎么做吗?

默认是ping

wss://localhost/graphql

我需要将其更改为推送器网址

谢谢 :-)

【问题讨论】:

你在使用apollo-server-express吗?您能否提供更多关于您如何实施服务器的信息? 【参考方案1】:

如果您正在运行 GraphQL Playground 的独立实例,则 URL 将作为 prop 直接传递给组件:

<Playground
  endpoint="http://localhost/graphql"
  subscriptionEndpoint="wss://localhost/graphql"
/>

如果你使用apollo-server,端点URL应该从subscriptionsPath派生,但也可以直接在配置中设置:

const server = new ApolloServer(
  typeDefs,
  resolvers,
  playground: 
    subscriptionEndpoint: 'wss://localhost/graphql',
  ,
);

编辑:

似乎没有办法使用特定订阅 URL 配置桌面客户端,除非您将它与包含 .graphqlconfig 的本地存储库一起使用。在这种情况下,您可以在配置文件中提供有关您的环境的其他信息,包括订阅 url,如 here 所述。

【讨论】:

在graphql-playground(桌面客户端)

以上是关于如何在 graphql-playground 中更改 websocket url(订阅)的主要内容,如果未能解决你的问题,请参考以下文章

如何在 IntelliJ 中更改线宽(从 120 个字符开始)

如何让音频在 React 中更流畅地循环播放?

如何在 C++ 中更有效地只生成这么多排列?

如何在 PyQt5 布局中更紧密地对齐两个小部件?

如何使用布尔逻辑使这个 if 语句在 python 3 中更简洁?

如何让 Vertx 处理程序在事件循环中更早地执行?