There's no method for collapse feature. [Collapsing feature](https://www.elastic.co/guide/en/elasticsearch/reference/7.2/search-request-collapse.html) is vary usefull for building suggestions. To use this feature right now in v7.0.0 of *e-dsl* I can use this workaround: ```python s = Search(...) s = s.update_from_dict({'collapse': {'field': 'some.field'}}) ``` It'll be much easier to use it in a way like that: ```python s = Search(...) s = s.collapse('some.field', 'some.another.field') s = s.collapse('some.complicated.field'={ 'inner_hits': ..., '...': ... }) ````