strapi/packages/plugins/graphql/strapi-server.js
Jean-Sébastien Herbaux 2b715a6ee9
V4/graphql configuration (#10896)
* Use a scalar to register the i18n locale arg

* Remove useless files & comments

* Use custom config for apollo server & the pagination (better handling of pagination)

* Fix missing strapi variable being transmitted to wrapResolvers/parseMiddlewares

* PR review comments
2021-09-07 11:23:49 +02:00

12 lines
205 B
JavaScript

'use strict';
const bootstrap = require('./server/bootstrap');
const services = require('./server/services');
module.exports = (/* strapi, config */) => {
return {
bootstrap,
services,
};
};