forked from danpaz/bodybuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
30 lines (29 loc) · 871 Bytes
/
index.js
File metadata and controls
30 lines (29 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import boolFilter from './bool-filter'
import existsFilter from './exists-filter'
import matchAllFilter from './match-all-filter'
import missingFilter from './missing-filter'
import nestedFilter from './nested-filter'
import prefixFilter from './prefix-filter'
import rangeFilter from './range-filter'
import regexpFilter from './regexp-filter'
import termFilter from './term-filter'
import termsFilter from './terms-filter'
import typeFilter from './type-filter'
export default {
bool: boolFilter,
boolean: boolFilter,
exists: existsFilter,
exist: existsFilter,
matchAll: matchAllFilter,
matchall: matchAllFilter,
'match-all': matchAllFilter,
match_all: matchAllFilter,
missing: missingFilter,
nested: nestedFilter,
prefix: prefixFilter,
range: rangeFilter,
regexp: regexpFilter,
term: termFilter,
terms: termsFilter,
type: typeFilter
}