UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

32 lines (31 loc) 1.17 kB
import { Router } from 'express'; import { parseGraphQL } from '../middleware/graphql.js'; import { respond } from '../middleware/respond.js'; import { GraphQLService } from '../services/graphql/index.js'; import asyncHandler from '../utils/async-handler.js'; const router = Router(); router.use('/system', parseGraphQL, asyncHandler(async (req, res, next) => { const service = new GraphQLService({ accountability: req.accountability, schema: req.schema, scope: 'system', }); res.locals['payload'] = await service.execute(res.locals['graphqlParams']); if (res.locals['payload']?.errors?.length > 0) { res.locals['cache'] = false; } return next(); }), respond); router.use('/', parseGraphQL, asyncHandler(async (req, res, next) => { const service = new GraphQLService({ accountability: req.accountability, schema: req.schema, scope: 'items', }); res.locals['payload'] = await service.execute(res.locals['graphqlParams']); if (res.locals['payload']?.errors?.length > 0) { res.locals['cache'] = false; } return next(); }), respond); export default router;