符合服务器和客户端的一致,零依赖,惰性,简单的 。 入门 安装 $ yarn add graphql-ws 创建一个GraphQL模式 import { buildSchema } from 'graphql' ; // Construct a schema, using GraphQL schema language const schema = buildSchema ( ` type Query { hello: String } type Subscription { greetings: String } ` ) ; // The roots prov