基于webman的GraphQL如何实现

作者:有用网 阅读量:141 发布时间:2024-01-17
关键字 webman

这篇“基于webman的GraphQL如何实现”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“基于webman的GraphQL如何实现”文章吧。

基于

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

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

// Type
type Article {
    id: Int
    category_id: Int
    title: String
    description: String
    created_at: Int
    create_time: String @alias(key: "created_at") @date
    status: Int
}

type ArticlePagination {
    pagination: Pagination
    data: [Article]
}

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

scope

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

支持分页

paginate

articles: ArticlePagination
@model(name: "app	estmodelapiArticleModel", scopes: ["published"])
@paginate(perPage: 15)

查询条件

where

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

延迟加载

defer

// Type
type article {
    ...
    category: Category @defer(resolver: "app	estloadersCms@getCategoryById", keys: "category_id")
}

type Category {
    id: Int
    parent_id: Int
    title: String
    parent: Category @defer(resolver: "app	estloadersCms@getCategoryById", keys: "parent_id")
}

除此以外,还有包括

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

#发表评论
提交评论