mirror of
https://github.com/strapi/strapi.git
synced 2025-07-28 11:30:21 +00:00
10 lines
293 B
JavaScript
10 lines
293 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const createCollectionTypeMutationsBuilder = require('./collection-type');
|
||
|
const createSingleTypeMutationsBuilder = require('./single-type');
|
||
|
|
||
|
module.exports = context => ({
|
||
|
...createCollectionTypeMutationsBuilder(context),
|
||
|
...createSingleTypeMutationsBuilder(context),
|
||
|
});
|