graphql auth directives:使用架构指令向您的GraphQL API添加授权 源码
graphql-auth指令 使用架构指令将身份验证添加到您的GraphQL API。 授权的架构指令 @isAuthenticated @hasRole @hasScope 快速开始 npm install --save graphql-auth-directives 然后导入您要使用的架构指令,并在GraphQL架构构建过程中附加它们。 例如,使用 : import { IsAuthenticatedDirective , HasRoleDirective , HasScopeDirective } from "graphql-auth-directives" ; const
用户评论