UNPKG

guox-express

Version:

GuOx: Ultimate enterprise‑grade, AI & WASM‑powered Express security framework

9 lines (7 loc) 279 B
import { RequestHandler } from 'express'; import { shield } from 'graphql-shield'; export default function GraphQLShield(cfg: any): RequestHandler { const mw = shield(cfg,{allowExternalErrors:false}); Object.defineProperty(mw,'name',{value:'GraphQLShield'}); return mw; }