LICENSE
README.md
pyproject.toml
src/monggregate/__init__.py
src/monggregate/_run.py
src/monggregate/base.py
src/monggregate/dollar.py
src/monggregate/expressions.py
src/monggregate/fields.py
src/monggregate/pipeline.py
src/monggregate/utils.py
src/monggregate.egg-info/PKG-INFO
src/monggregate.egg-info/SOURCES.txt
src/monggregate.egg-info/dependency_links.txt
src/monggregate.egg-info/requires.txt
src/monggregate.egg-info/top_level.txt
src/monggregate/operators/__init__.py
src/monggregate/operators/operator.py
src/monggregate/operators/accumulators/__init__.py
src/monggregate/operators/accumulators/accumulator.py
src/monggregate/operators/accumulators/avg.py
src/monggregate/operators/accumulators/count.py
src/monggregate/operators/accumulators/first.py
src/monggregate/operators/accumulators/last.py
src/monggregate/operators/accumulators/max.py
src/monggregate/operators/accumulators/min.py
src/monggregate/operators/accumulators/push.py
src/monggregate/operators/accumulators/sum.py
src/monggregate/operators/arithmetic/__init__.py
src/monggregate/operators/arithmetic/add.py
src/monggregate/operators/arithmetic/arithmetic.py
src/monggregate/operators/arithmetic/divide.py
src/monggregate/operators/arithmetic/multiply.py
src/monggregate/operators/arithmetic/pow.py
src/monggregate/operators/arithmetic/subtract.py
src/monggregate/operators/array/__init__.py
src/monggregate/operators/array/array.py
src/monggregate/operators/array/array_to_object.py
src/monggregate/operators/array/filter.py
src/monggregate/operators/array/first.py
src/monggregate/operators/array/in_.py
src/monggregate/operators/array/is_array.py
src/monggregate/operators/array/last.py
src/monggregate/operators/array/max_n.py
src/monggregate/operators/array/min_n.py
src/monggregate/operators/array/size.py
src/monggregate/operators/array/sort_array.py
src/monggregate/operators/boolean/__init__.py
src/monggregate/operators/boolean/and_.py
src/monggregate/operators/boolean/boolean.py
src/monggregate/operators/boolean/not_.py
src/monggregate/operators/boolean/or_.py
src/monggregate/operators/comparison/__init__.py
src/monggregate/operators/comparison/cmp.py
src/monggregate/operators/comparison/comparator.py
src/monggregate/operators/comparison/eq.py
src/monggregate/operators/comparison/gt.py
src/monggregate/operators/comparison/gte.py
src/monggregate/operators/comparison/lt.py
src/monggregate/operators/comparison/lte.py
src/monggregate/operators/comparison/ne.py
src/monggregate/operators/conditional/__init__.py
src/monggregate/operators/conditional/cond.py
src/monggregate/operators/conditional/conditional.py
src/monggregate/operators/conditional/if_null.py
src/monggregate/operators/conditional/switch.py
src/monggregate/operators/custom/__init__.py
src/monggregate/operators/custom/custom.py
src/monggregate/operators/data_size/__init__.py
src/monggregate/operators/data_size/data_size.py
src/monggregate/operators/date/__init__.py
src/monggregate/operators/date/date.py
src/monggregate/operators/date/millisecond.py
src/monggregate/operators/objects/__init__.py
src/monggregate/operators/objects/merge_objects.py
src/monggregate/operators/objects/object_.py
src/monggregate/operators/objects/object_to_array.py
src/monggregate/operators/strings/__init__.py
src/monggregate/operators/strings/concat.py
src/monggregate/operators/strings/date_from_string.py
src/monggregate/operators/strings/date_to_string.py
src/monggregate/operators/strings/string.py
src/monggregate/operators/type_/__init__.py
src/monggregate/operators/type_/type_.py
src/monggregate/search/__init__.py
src/monggregate/search/collectors/__init__.py
src/monggregate/search/collectors/collector.py
src/monggregate/search/collectors/facet.py
src/monggregate/search/commons/__init__.py
src/monggregate/search/commons/count.py
src/monggregate/search/commons/fuzzy.py
src/monggregate/search/commons/highlight.py
src/monggregate/search/operators/__init__.py
src/monggregate/search/operators/autocomplete.py
src/monggregate/search/operators/clause.py
src/monggregate/search/operators/compound.py
src/monggregate/search/operators/equals.py
src/monggregate/search/operators/exists.py
src/monggregate/search/operators/more_like_this.py
src/monggregate/search/operators/operator.py
src/monggregate/search/operators/range.py
src/monggregate/search/operators/regex.py
src/monggregate/search/operators/text.py
src/monggregate/search/operators/wildcard.py
src/monggregate/stages/__init__.py
src/monggregate/stages/bucket.py
src/monggregate/stages/bucket_auto.py
src/monggregate/stages/count.py
src/monggregate/stages/group.py
src/monggregate/stages/limit.py
src/monggregate/stages/lookup.py
src/monggregate/stages/match.py
src/monggregate/stages/out.py
src/monggregate/stages/project.py
src/monggregate/stages/replace_root.py
src/monggregate/stages/sample.py
src/monggregate/stages/set.py
src/monggregate/stages/skip.py
src/monggregate/stages/sort.py
src/monggregate/stages/sort_by_count.py
src/monggregate/stages/stage.py
src/monggregate/stages/union_with.py
src/monggregate/stages/unset.py
src/monggregate/stages/unwind.py
src/monggregate/stages/vector_search.py
src/monggregate/stages/search/__init__.py
src/monggregate/stages/search/base.py
src/monggregate/stages/search/search.py
src/monggregate/stages/search/search_meta.py
tests/test_docstrings.py
tests/test_dollar.py
tests/test_expressions.py
tests/test_group.py
tests/test_join_alias.py
tests/test_operators_accumulators.py
tests/test_operators_array.py
tests/test_operators_boolean.py
tests/test_operators_comparison.py
tests/test_operators_objects.py
tests/test_package.py
tests/test_search_operators.py
tests/test_search_pipeline.py
tests/test_signatures.py
tests/test_stages.py