mirror of
https://github.com/strapi/strapi.git
synced 2025-07-28 03:20:17 +00:00
10 lines
295 B
JavaScript
10 lines
295 B
JavaScript
'use strict';
|
|
|
|
const createCollectionTypeMutationsBuilder = require('./collection-type');
|
|
const createSingleTypeMutationsBuilder = require('./single-type');
|
|
|
|
module.exports = (context) => ({
|
|
...createCollectionTypeMutationsBuilder(context),
|
|
...createSingleTypeMutationsBuilder(context),
|
|
});
|