UNPKG

268 BJavaScriptView Raw
1module.exports = {
2 type: 'index',
3 predicate: function (mapping) {
4 return mapping.name === 'config';
5 },
6 mutate: function (index) {
7 // Remove specific types
8 delete index.mappings.order;
9 delete index.mappings.search;
10
11 return index;
12 }
13};
\No newline at end of file