mirror of
https://github.com/strapi/strapi.git
synced 2025-08-02 05:48:39 +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),
|
|
});
|