mirror of
https://github.com/strapi/strapi.git
synced 2025-11-05 20:36:08 +00:00
9 lines
213 B
JavaScript
9 lines
213 B
JavaScript
'use strict';
|
|
|
|
const { createAsyncSeriesWaterfallHook } = require('strapi-utils').hooks;
|
|
|
|
module.exports = {
|
|
createQuery: createAsyncSeriesWaterfallHook(),
|
|
createMutation: createAsyncSeriesWaterfallHook(),
|
|
};
|