We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b121905 commit fa7d42fCopy full SHA for fa7d42f
src/django_elasticsearch_dsl_drf/filter_backends/aggregations/__init__.py
@@ -0,0 +1,17 @@
1
+"""
2
+Aggregations filtering backends.
3
4
+
5
+from .bucket_aggregations import *
6
+from .metrics_aggregations import *
7
+from .pipeline_aggregations import *
8
9
+__title__ = 'django_elasticsearch_dsl_drf.filter_backends.suggester'
10
+__author__ = 'Artur Barseghyan <[email protected]>'
11
+__copyright__ = '2017-2018 Artur Barseghyan'
12
+__license__ = 'GPL 2.0/LGPL 2.1'
13
+__all__ = (
14
+ 'BucketAggregationsFilterBackend',
15
+ 'MetricsAggregationsFilterBackend',
16
+ 'PipelineAggregationsFilterBackend',
17
+)
0 commit comments