mirror of
https://github.com/strapi/strapi.git
synced 2025-07-25 18:05:07 +00:00
14 lines
314 B
JavaScript
14 lines
314 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),
|
|
});
|