Trait

reactivemongo.api.commands

AggregationFramework

Related Doc: package commands

Permalink

trait AggregationFramework[P <: SerializationPack] extends GroupAggregation[P] with SliceAggregation[P] with SortAggregation[P] with AggregationPipeline[P] with ChangeStreamAggregation[P] with AtlasSearchAggregation[P]

Implements the Aggregation Framework.

Self Type
AggregationFramework[P] with PackSupport[P]
See also

PipelineOperator

Linear Supertypes
AtlasSearchAggregation[P], ChangeStreamAggregation[P], AggregationPipeline[P], SortAggregation[P], SliceAggregation[P], GroupAggregation[P], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AggregationFramework
  2. AtlasSearchAggregation
  3. ChangeStreamAggregation
  4. AggregationPipeline
  5. SortAggregation
  6. SliceAggregation
  7. GroupAggregation
  8. AnyRef
  9. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final class AddFieldToSet extends GroupFunction

    Permalink

    The $addToSet group accumulator.

    The $addToSet group accumulator.

    Definition Classes
    GroupAggregation
  2. final class AddFields extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $addFields stage.

    $addFields stage.

    Since

    MongoDB 3.4

  3. final class AddToSet extends GroupFunction

    Permalink

    The $addToSet group accumulator.

    The $addToSet group accumulator.

    Definition Classes
    GroupAggregation
  4. final class Ascending extends SortOrder

    Permalink

    Ascending sort order

    Ascending sort order

    Definition Classes
    SortAggregation
  5. final class AtlasSearch extends PipelineOperator

    Permalink

    EXPERIMENTAL: See AtlasSearch$

    EXPERIMENTAL: See AtlasSearch$

    Definition Classes
    AtlasSearchAggregation
  6. final class Avg extends GroupFunction

    Permalink

    The $avg group accumulator.

    The $avg group accumulator.

    Definition Classes
    GroupAggregation
  7. final class AvgField extends GroupFunction

    Permalink

    The $avg group accumulator.

    The $avg group accumulator.

    Definition Classes
    GroupAggregation
  8. final class Bucket extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $bucket aggregation stage.

  9. final class BucketAuto extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $bucket aggregation stage.

    $bucket aggregation stage.

    Since

    MongoDB 3.4 Categorizes incoming documents into a specific number of groups, called buckets, based on a specified expression. Bucket boundaries are automatically determined in an attempt to evenly distribute the documents into the specified number of buckets. Document fields identifier must be prefixed with $.

  10. final class ChangeStream extends AggregationFramework.PipelineOperator

    Permalink

    Low level pipeline operator which allows to open a tailable cursor against subsequent change events of a given collection.

    Low level pipeline operator which allows to open a tailable cursor against subsequent change events of a given collection.

    For common use-cases, you might prefer to use the watch operator on a collection.

    Note: the target mongo instance MUST be a replica-set (even in the case of a single node deployement).

    Definition Classes
    ChangeStreamAggregation
    Since

    MongoDB 3.6

  11. final class CollStats extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $collStats aggregation stage.

  12. final class Count extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $count of the number of documents input.

    $count of the number of documents input.

    Since

    MongoDB 3.4

  13. final class CurrentOp extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $currentOp.

    Since

    MongoDB 3.6

  14. final class Cursor extends AnyRef

    Permalink

    Attributes
    protected
  15. final class Descending extends SortOrder

    Permalink

    Descending sort order

    Descending sort order

    Definition Classes
    SortAggregation
  16. final class Facet extends (AggregationFramework.this)#PipelineOperator

    Permalink

    Processes multiple aggregation pipelines within a single stage on the same set of input documents.

    Processes multiple aggregation pipelines within a single stage on the same set of input documents.

    Each sub-pipeline has its own field in the output document where its results are stored as an array of documents.

    See also

    https://docs.mongodb.com/manual/reference/operator/aggregation/facet/

  17. final class Filter extends AnyRef

    Permalink

    The $filter aggregation stage.

  18. final class First extends GroupFunction

    Permalink

    The $field group accumulator.

    The $field group accumulator.

    Definition Classes
    GroupAggregation
  19. final class FirstField extends GroupFunction

    Permalink

    The $field group accumulator.

    The $field group accumulator.

    Definition Classes
    GroupAggregation
  20. final class GeoNear extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $geoNear aggregation stage, that outputs documents in order of nearest to farthest from a specified point.

  21. final class GraphLookup extends (AggregationFramework.this)#PipelineOperator

    Permalink

    The $graphLookup aggregation stage.

    The $graphLookup aggregation stage.

    Since

    MongoDB 3.4

  22. final class Group extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $groups documents together to calculate aggregates on document collections.

    $groups documents together to calculate aggregates on document collections. This command aggregates on arbitrary identifiers. Document fields identifier must be prefixed with $.

  23. final class GroupField extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $groups documents together to calculate aggregates on document collections.

    $groups documents together to calculate aggregates on document collections. This command aggregates on one field.

  24. sealed trait GroupFunction extends AnyRef

    Permalink

    Represents one of the group/accumulator operators, for the $group aggregation.

    Represents one of the group/accumulator operators, for the $group aggregation. Operation.

    Definition Classes
    GroupAggregation
    See also

    https://docs.mongodb.com/manual/reference/operator/aggregation/group/#accumulator-operator

  25. final class GroupMulti extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $groups documents together to calculate aggregates on document collections.

    $groups documents together to calculate aggregates on document collections. This command aggregates on multiple fields, and they must be named.

  26. final class IndexStatAccesses extends AnyRef

    Permalink

  27. final class IndexStatsResult extends AnyRef

    Permalink

  28. final class Last extends GroupFunction

    Permalink

    The $field group accumulator.

    The $field group accumulator.

    Definition Classes
    GroupAggregation
  29. final class LastField extends GroupFunction

    Permalink

    The $field group accumulator.

    The $field group accumulator.

    Definition Classes
    GroupAggregation
  30. final class Limit extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $limits the number of documents that pass through the stream.

  31. final class ListLocalSessions extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $listLocalSessions aggregation stage.

    $listLocalSessions aggregation stage.

    Since

    MongoDB 3.6

  32. final class ListSessions extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $listSessions aggregation stage.

    $listSessions aggregation stage.

    Since

    MongoDB 3.6

  33. final class Lookup extends (AggregationFramework.this)#PipelineOperator

    Permalink

    Performs a left outer join to an unsharded collection in the same database to filter in documents from the "joined" collection for processing.

    Performs a left outer join to an unsharded collection in the same database to filter in documents from the "joined" collection for processing.

    Since

    MongoDB 3.2

  34. final class Match extends (AggregationFramework.this)#PipelineOperator

    Permalink

    Filters out documents from the stream that do not match the predicate.

  35. final class Max extends GroupFunction

    Permalink

    The $max group accumulator.

    The $max group accumulator.

    Definition Classes
    GroupAggregation
  36. final class MaxField extends GroupFunction

    Permalink

    The $max group accumulator.

    The $max group accumulator.

    Definition Classes
    GroupAggregation
  37. final class Merge extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $merge aggregation stage.

    $merge aggregation stage.

    Since

    MongoDB 4.2

  38. final class MergeObjects extends GroupFunction

    Permalink

    The $mergeObjects group accumulator.

    The $mergeObjects group accumulator.

    Definition Classes
    GroupAggregation
  39. sealed trait MetadataKeyword extends AnyRef

    Permalink

    Keyword of metadata.

    Definition Classes
    SortAggregation
  40. final class MetadataSort extends SortOrder

    Permalink

    Metadata sort order.

    Definition Classes
    SortAggregation
  41. final class Min extends GroupFunction

    Permalink

    The $min group accumulator.

    The $min group accumulator.

    Definition Classes
    GroupAggregation
  42. final class MinField extends GroupFunction

    Permalink

    The $min group accumulator.

    The $min group accumulator.

    Definition Classes
    GroupAggregation
  43. final class Out extends (AggregationFramework.this)#PipelineOperator

    Permalink

    Takes the documents returned by the aggregation pipeline and writes them to a specified collection

  44. type Pipeline = List[(AggregationFramework.this)#PipelineOperator]

    Permalink

    Aggregation pipeline (with at least one stage operator)

    Aggregation pipeline (with at least one stage operator)

    Definition Classes
    AggregationPipeline
  45. trait PipelineOperator extends AnyRef

    Permalink

    One of MongoDBs pipeline operators for aggregation.

    One of MongoDBs pipeline operators for aggregation. Sealed as these are defined in the MongoDB specifications, and clients should not have custom operators.

    Definition Classes
    AggregationPipeline
  46. final class Project extends (AggregationFramework.this)#PipelineOperator

    Permalink

    Reshapes a document stream by renaming, adding, or removing fields.

    Reshapes a document stream by renaming, adding, or removing fields. Also uses Project to create computed values or sub-objects.

  47. final class Push extends GroupFunction

    Permalink

    The $push group accumulator.

    The $push group accumulator.

    Definition Classes
    GroupAggregation
  48. final class PushField extends GroupFunction

    Permalink

    The $push group accumulator.

    The $push group accumulator.

    Definition Classes
    GroupAggregation
  49. final class Redact extends (AggregationFramework.this)#PipelineOperator

    Permalink

    Restricts the contents of the documents based on information stored in the documents themselves.

    Restricts the contents of the documents based on information stored in the documents themselves. http://docs.mongodb.org/manual/reference/operator/aggregation/redact/#pipe._S_redact Redact

  50. final class ReplaceRoot extends (AggregationFramework.this)#PipelineOperator

    Permalink

    Promotes a specified document to the top level and replaces all other fields.

    Promotes a specified document to the top level and replaces all other fields. The operation replaces all existing fields in the input document, including the _id field. https://docs.mongodb.com/manual/reference/operator/aggregation/replaceRoot

  51. final class ReplaceRootField extends (AggregationFramework.this)#PipelineOperator

    Permalink

    Promotes a specified document to the top level and replaces all other fields.

    Promotes a specified document to the top level and replaces all other fields. The operation replaces all existing fields in the input document, including the _id field. https://docs.mongodb.com/manual/reference/operator/aggregation/replaceRoot

  52. final class ReplaceWith extends (AggregationFramework.this)#PipelineOperator

    Permalink

    The $replaceWith aggregation stage.

    The $replaceWith aggregation stage.

    Since

    MongoDB 4.2

  53. final class Sample extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $sample aggregation stage, that randomly selects the specified number of documents from its input.

  54. final class SearchString extends AnyRef

    Permalink

    EXPERIMENTAL: One or at least one string

    EXPERIMENTAL: One or at least one string

    Definition Classes
    AtlasSearchAggregation
  55. final class Set extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $set aggregation stage

  56. final class Skip extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $skips over a number of documents before passing all further documents along the stream.

  57. final class Slice extends PipelineOperator

    Permalink

    Returns a slice/subset of an array.

    Returns a slice/subset of an array.

    Definition Classes
    SliceAggregation
  58. final class Sort extends (AggregationFramework.this)#PipelineOperator

    Permalink

    $sorts the stream based on the given fields.

  59. final class SortByCount extends (AggregationFramework.this)#PipelineOperator

    Permalink

    The $sortByCount aggregation stage.

    The $sortByCount aggregation stage.

    Since

    MongoDB 3.4

  60. final class SortByFieldCount extends (AggregationFramework.this)#PipelineOperator

    Permalink

    The $sortByCount aggregation stage.

    The $sortByCount aggregation stage.

    Since

    MongoDB 3.4

  61. sealed trait SortOrder extends AnyRef

    Permalink

    Represents that a field should be sorted on, as well as whether it should be ascending or descending.

    Represents that a field should be sorted on, as well as whether it should be ascending or descending.

    Definition Classes
    SortAggregation
  62. final class StdDevPop extends GroupFunction

    Permalink

    The $stdDevPop group accumulator.

    The $stdDevPop group accumulator.

    Definition Classes
    GroupAggregation
    Since

    MongoDB 3.2

  63. final class StdDevPopField extends GroupFunction

    Permalink

    The $stdDevPop for a single field.

    The $stdDevPop for a single field.

    Definition Classes
    GroupAggregation
    Since

    MongoDB 3.2

  64. final class StdDevSamp extends GroupFunction

    Permalink

    The $stdDevSamp group accumulator

    The $stdDevSamp group accumulator

    Definition Classes
    GroupAggregation
    Since

    MongoDB 3.2

  65. final class StdDevSampField extends GroupFunction

    Permalink

    The $stdDevSamp for a single field

    The $stdDevSamp for a single field

    Definition Classes
    GroupAggregation
    Since

    MongoDB 3.2

  66. final class Sum extends GroupFunction

    Permalink

    The $sum group accumulator.

    The $sum group accumulator.

    Definition Classes
    GroupAggregation
  67. final class SumField extends GroupFunction

    Permalink

    The $sum group accumulator.

    The $sum group accumulator.

    Definition Classes
    GroupAggregation
  68. final class SumValue extends GroupFunction

    Permalink
    Definition Classes
    GroupAggregation
  69. final class Unset extends (AggregationFramework.this)#PipelineOperator

    Permalink

    The $unset aggregation stage.

    The $unset aggregation stage.

    Since

    MongoDB 4.2

  70. sealed trait Unwind extends (AggregationFramework.this)#PipelineOperator

    Permalink
  71. final class UnwindField extends (AggregationFramework.this)#Unwind

    Permalink

    Turns a document with an array into multiple documents, one document for each element in the array.

    Turns a document with an array into multiple documents, one document for each element in the array. http://docs.mongodb.org/manual/reference/aggregation/unwind/#_S_unwind

Abstract Value Members

  1. abstract val pack: P

    Permalink
    Definition Classes
    AggregationPipeline

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from AggregationFramework[P] to any2stringadd[AggregationFramework[P]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (AggregationFramework[P], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from AggregationFramework[P] to ArrowAssoc[AggregationFramework[P]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. object AddFieldToSet

    Permalink
    Definition Classes
    GroupAggregation
  7. object AddFields

    Permalink
  8. object AddToSet

    Permalink
    Definition Classes
    GroupAggregation
  9. object Ascending

    Permalink
    Definition Classes
    SortAggregation
  10. object AtlasSearch

    Permalink

    EXPERIMENTAL: Atlas Search (only on MongoDB Atlas)

    EXPERIMENTAL: Atlas Search (only on MongoDB Atlas)

    Definition Classes
    AtlasSearchAggregation
  11. object Avg

    Permalink
    Definition Classes
    GroupAggregation
  12. object AvgField

    Permalink
    Definition Classes
    GroupAggregation
  13. object Bucket

    Permalink
  14. object BucketAuto

    Permalink
  15. object ChangeStream

    Permalink
    Definition Classes
    ChangeStreamAggregation
  16. object CollStats

    Permalink
  17. object Count

    Permalink
  18. object CurrentOp

    Permalink
  19. object Descending

    Permalink
    Definition Classes
    SortAggregation
  20. object Facet

    Permalink
  21. object Filter

    Permalink

    Filter companion

  22. object First

    Permalink
    Definition Classes
    GroupAggregation
  23. object FirstField

    Permalink
    Definition Classes
    GroupAggregation
  24. object GeoNear

    Permalink
  25. object GraphLookup

    Permalink
  26. object Group

    Permalink
  27. object GroupField

    Permalink
  28. object GroupFunction

    Permalink

    Factory to declare custom call to a group function.

    Factory to declare custom call to a group function.

    Definition Classes
    GroupAggregation
  29. object GroupMulti

    Permalink
  30. object IndexStats extends (AggregationFramework.this)#PipelineOperator with Product with Serializable

    Permalink

    $indexStats aggregation stage.

    $indexStats aggregation stage.

    Since

    MongoDB 3.2

  31. object IndexStatsResult

    Permalink
  32. object Last

    Permalink
    Definition Classes
    GroupAggregation
  33. object LastField

    Permalink
    Definition Classes
    GroupAggregation
  34. object Limit

    Permalink
  35. object ListLocalSessions

    Permalink
  36. object ListSessions

    Permalink
  37. object Lookup

    Permalink
  38. object Match

    Permalink
  39. object Max

    Permalink
    Definition Classes
    GroupAggregation
  40. object MaxField

    Permalink
    Definition Classes
    GroupAggregation
  41. object Merge

    Permalink
  42. object MergeObjects

    Permalink
    Definition Classes
    GroupAggregation
  43. object MetadataSort

    Permalink
    Definition Classes
    SortAggregation
  44. object Min

    Permalink
    Definition Classes
    GroupAggregation
  45. object MinField

    Permalink
    Definition Classes
    GroupAggregation
  46. object Out

    Permalink
  47. object PipelineOperator

    Permalink

    Only for advanced user: Factory for stage not already provided in the API.

    Only for advanced user: Factory for stage not already provided in the API.

    For example for { $sample: { size: 2 } }

    import reactivemongo.api.bson.BSONDocument
    import reactivemongo.api.bson.collection.BSONCollection
    
    def foo(coll: BSONCollection) =
      coll.aggregateWith[BSONDocument]() { agg =>
        import agg.PipelineOperator
    
        List(PipelineOperator(BSONDocument(
          f"$$sample" -> BSONDocument("size" -> 2))))
      }
    Definition Classes
    AggregationPipeline
  48. object PlanCacheStats extends (AggregationFramework.this)#PipelineOperator with Product with Serializable

    Permalink

    $planCacheStats aggregation stage.

    $planCacheStats aggregation stage.

    Since

    MongoDB 4.2

  49. object Project

    Permalink
  50. object Push

    Permalink
    Definition Classes
    GroupAggregation
  51. object PushField

    Permalink
    Definition Classes
    GroupAggregation
  52. object Redact

    Permalink
  53. object ReplaceRoot

    Permalink
  54. object ReplaceRootField

    Permalink
  55. object ReplaceWith

    Permalink
  56. object Sample

    Permalink
  57. object SearchString

    Permalink

    EXPERIMENTAL: Search string utilities

    EXPERIMENTAL: Search string utilities

    Definition Classes
    AtlasSearchAggregation
  58. object Set

    Permalink
  59. object Skip

    Permalink
  60. object Slice

    Permalink

    import reactivemongo.api.bson.{ BSONDocument, BSONInteger, BSONString }
    import reactivemongo.api.bson.collection.BSONCollection
    
    def foo(coll: BSONCollection) =
      coll.aggregateWith[BSONDocument]() { agg =>
        import agg.{ Project, Slice }
    
        // Define the pipeline stages
        List(Project(BSONDocument(
          "name" -> 1,
          "favorites" -> Slice(
            array = BSONString(f"$$favorites"),
            n = BSONInteger(3)))))
      }
    Definition Classes
    SliceAggregation
  61. object Sort

    Permalink
  62. object SortByCount

    Permalink
  63. object SortByFieldCount

    Permalink
  64. object StdDevPop

    Permalink
    Definition Classes
    GroupAggregation
  65. object StdDevPopField

    Permalink
    Definition Classes
    GroupAggregation
  66. object StdDevSamp

    Permalink
    Definition Classes
    GroupAggregation
  67. object StdDevSampField

    Permalink
    Definition Classes
    GroupAggregation
  68. object Sum

    Permalink
    Definition Classes
    GroupAggregation
  69. object SumAll extends GroupFunction with Product with Serializable

    Permalink

    The $sum: 1 group accumulator.

    The $sum: 1 group accumulator.

    Definition Classes
    GroupAggregation
  70. object SumField

    Permalink
    Definition Classes
    GroupAggregation
  71. object TextScore extends MetadataKeyword with Product with Serializable

    Permalink

    References the score associated with the corresponding $text query for each matching document.

    References the score associated with the corresponding $text query for each matching document.

    Definition Classes
    SortAggregation
  72. object Unset

    Permalink
  73. object Unwind

    Permalink
  74. object UnwindField

    Permalink
  75. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  76. final lazy val builder: Builder[(AggregationFramework.this)#pack.type]

    Permalink
    Attributes
    protected
  77. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  78. def ensuring(cond: (AggregationFramework[P]) ⇒ Boolean, msg: ⇒ Any): AggregationFramework[P]

    Permalink
    Implicit information
    This member is added by an implicit conversion from AggregationFramework[P] to Ensuring[AggregationFramework[P]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  79. def ensuring(cond: (AggregationFramework[P]) ⇒ Boolean): AggregationFramework[P]

    Permalink
    Implicit information
    This member is added by an implicit conversion from AggregationFramework[P] to Ensuring[AggregationFramework[P]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  80. def ensuring(cond: Boolean, msg: ⇒ Any): AggregationFramework[P]

    Permalink
    Implicit information
    This member is added by an implicit conversion from AggregationFramework[P] to Ensuring[AggregationFramework[P]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  81. def ensuring(cond: Boolean): AggregationFramework[P]

    Permalink
    Implicit information
    This member is added by an implicit conversion from AggregationFramework[P] to Ensuring[AggregationFramework[P]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  82. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  83. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  84. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  85. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from AggregationFramework[P] to StringFormat[AggregationFramework[P]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  86. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  87. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  88. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  89. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  90. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  91. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  92. final def pipe(name: String, arg: P.Value): P.Document

    Permalink
    Attributes
    protected
    Annotations
    @inline()
  93. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  94. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  95. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  96. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  97. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  98. def [B](y: B): (AggregationFramework[P], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from AggregationFramework[P] to ArrowAssoc[AggregationFramework[P]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AtlasSearchAggregation[P]

Inherited from ChangeStreamAggregation[P]

Inherited from AggregationPipeline[P]

Inherited from SortAggregation[P]

Inherited from SliceAggregation[P]

Inherited from GroupAggregation[P]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from AggregationFramework[P] to any2stringadd[AggregationFramework[P]]

Inherited by implicit conversion StringFormat from AggregationFramework[P] to StringFormat[AggregationFramework[P]]

Inherited by implicit conversion Ensuring from AggregationFramework[P] to Ensuring[AggregationFramework[P]]

Inherited by implicit conversion ArrowAssoc from AggregationFramework[P] to ArrowAssoc[AggregationFramework[P]]

Ungrouped