mirror of
https://github.com/strapi/strapi.git
synced 2025-07-26 18:38:46 +00:00
14 lines
312 B
JavaScript
14 lines
312 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const args = require('./args');
|
||
|
const scalars = require('./scalars');
|
||
|
const types = require('./types');
|
||
|
const helpers = require('./helpers');
|
||
|
|
||
|
module.exports = context => ({
|
||
|
args: args(context),
|
||
|
scalars: scalars(context),
|
||
|
buildInternalTypes: types(context),
|
||
|
helpers: helpers(context),
|
||
|
});
|