gql:De用于Deno的通用GraphQL HTTP中间件 源码
gql 用于通用 HTTP中间件。 特征 :sparkles: 用可与std/http , 和 :high_voltage: 集成(通过graphiql: true ) 开始吧 香草 使用std/http最简单的设置: import { serve } from 'https://deno.land/std@0.90.0/http/server.ts' import { GraphQLHTTP } from 'https://deno.land/x/gql/mod.ts' import { buildSchema } from 'https://deno.land/x/graphql_deno@v15.0.0/mod.ts' const schema = buildSchema ( ` type Query { hello: String } ` ) const s = serve ( { port : 3000 } )
用户评论