基于webman的GraphQL如何实现(graphql,编程语言)

时间:2024-05-04 06:44:20 作者 : 石家庄SEO 分类 : 编程语言
  • TAG :

基于PHPGraphQL由于加载指令(directive)和解析schema的开销较大,性能不是很理想。webman是常驻内存的,所以GraphQLwebman上的性能表现非常不错。

GrahpQL 是基于YiAdmin的一个模块,用于快速创建GraphQL服务,可以开启多个服务,模块内置了多个指令用于快速开发api接口。

调试接口地址:/graphql-dev/api/服务名称
正式接口地址:/graphql-api/服务名称
后台接口管理可以建立接口名称与Query的映射关系,通过接口名称访问以简化前端输入,curl -X POST -d "{\"variables\": VARIABLES}" -H "Content-type:application/json" "HOST/graphql-api/SERVER_NAME?api=接口名称"
零依商城 是基于YiAdmin的uniapp商城系统,Api接口基于GrahpQL进行了重构。

基于webman的GraphQL如何实现

例如有如下 schema

//TypetypeArticle{id:Intcategory_id:Inttitle:Stringdescription:Stringcreated_at:Intcreate_time:String@alias(key:"created_at")@datestatus:Int}typeArticlePagination{pagination:Paginationdata:[Article]}

通过模型获取记录,支持模型 scope

//Query"通过文章ID获取文章"article("文章ID"id:Int!@eq):Article@model(name:"\\app\\test\\model\\api\\ArticleModel",scopes:["published"])@find

支持分页 paginate

articles:ArticlePagination@model(name:"\\app\\test\\model\\api\\ArticleModel",scopes:["published"])@paginate(perPage:15)

查询条件 where

articles(title:String):ArticlePagination@model(name:"\\app\\test\\model\\api\\ArticleModel",scopes:["published"])@where(value:{title:["like","$title"]})@paginate(perPage:15)

延迟加载 defer

//Typetypearticle{...category:Category@defer(resolver:"\\app\\test\\loaders\\Cms@getCategoryById",keys:"category_id")}typeCategory{id:Intparent_id:Inttitle:Stringparent:Category@defer(resolver:"\\app\\test\\loaders\\Cms@getCategoryById",keys:"parent_id")}

除此以外,还有包括auth权限管理、resolver自定义处理方法、date时间格式化、validate验证器、water打码脱敏、upper转大写、lower转小写等各种指令。
基于webman的GraphQL如何实现

 </div> <div class="zixun-tj-product adv-bottom"></div> </div> </div> <div class="prve-next-news">
本文:基于webman的GraphQL如何实现的详细内容,希望对您有所帮助,信息来源于网络。
上一篇:实用的Vue开发技巧有哪些下一篇:

2 人围观 / 0 条评论 ↓快速评论↓

(必须)

(必须,保密)

阿狸1 阿狸2 阿狸3 阿狸4 阿狸5 阿狸6 阿狸7 阿狸8 阿狸9 阿狸10 阿狸11 阿狸12 阿狸13 阿狸14 阿狸15 阿狸16 阿狸17 阿狸18