1. 首页
  2. 数据库
  3. 其它
  4. gql:De用于Deno的通用GraphQL HTTP中间件 源码

gql:De用于Deno的通用GraphQL HTTP中间件 源码

上传者: 2021-04-08 11:43:02上传 ZIP文件 27.63KB 热度 16次
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 } )
用户评论