Strapi创建Content Api自定义GraphQL接口
上一篇文章介绍了使用 Strapi 创建 Content Api 的过程,这里简要写一下生成一个自定义的 GraphQL Content Api。
1.创建 GraphQL Schema
Schema 文件路径/api/movie/config/schema.graphql.js
1 | module.exports = { |
2.查询
1 | { |
注意:如果返回 403Forbidden,需要在设置->角色和权限->Authenticated/Public->APPLICATION->MOVIE->count 选中保存
下一篇文章,写如何创建一个非 Content 相关的 GraphQL 接口。
Strapi创建Content Api自定义GraphQL接口