Object

reactivemongo.api.collections.AggregationOps

AggregationFramework

Related Doc: package AggregationOps

Permalink

object AggregationFramework extends commands.AggregationFramework[GenericCollection.pack.type] with PackSupport[GenericCollection.pack.type]

The aggregation framework for this collection

Linear Supertypes
PackSupport[GenericCollection.pack.type], commands.AggregationFramework[GenericCollection.pack.type], AtlasSearchAggregation[GenericCollection.pack.type], ChangeStreamAggregation[GenericCollection.pack.type], AggregationPipeline[GenericCollection.pack.type], SortAggregation[GenericCollection.pack.type], SliceAggregation[GenericCollection.pack.type], GroupAggregation[GenericCollection.pack.type], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AggregationFramework
  2. PackSupport
  3. AggregationFramework
  4. AtlasSearchAggregation
  5. ChangeStreamAggregation
  6. AggregationPipeline
  7. SortAggregation
  8. SliceAggregation
  9. GroupAggregation
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final class AddFieldToSet extends commands.AggregationFramework.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.

    Definition Classes
    AggregationFramework
    Since

    MongoDB 3.4

  3. final class AddToSet extends commands.AggregationFramework.GroupFunction

    Permalink

    The $addToSet group accumulator.

    The $addToSet group accumulator.

    Definition Classes
    GroupAggregation
  4. final class Ascending extends commands.AggregationFramework.SortOrder

    Permalink

    Ascending sort order

    Ascending sort order

    Definition Classes
    SortAggregation
  5. final class AtlasSearch extends commands.AggregationFramework.PipelineOperator

    Permalink

    EXPERIMENTAL: See AtlasSearch$

    EXPERIMENTAL: See AtlasSearch$

    Definition Classes
    AtlasSearchAggregation
  6. final class Avg extends commands.AggregationFramework.GroupFunction

    Permalink

    The $avg group accumulator.

    The $avg group accumulator.

    Definition Classes
    GroupAggregation
  7. final class AvgField extends commands.AggregationFramework.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.

    $bucket aggregation stage.

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

    Permalink

    $bucket aggregation stage.

    $bucket aggregation stage.

    Definition Classes
    AggregationFramework
    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 commands.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.

    $collStats aggregation stage.

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

    Permalink

    $count of the number of documents input.

    $count of the number of documents input.

    Definition Classes
    AggregationFramework
    Since

    MongoDB 3.4

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

    Permalink

    $currentOp.

    Definition Classes
    AggregationFramework
    Since

    MongoDB 3.6

  14. final class Cursor extends AnyRef

    Permalink

    Attributes
    protected
    Definition Classes
    AggregationFramework
  15. final class Descending extends commands.AggregationFramework.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.

    Definition Classes
    AggregationFramework
    See also

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

  17. final class Filter extends AnyRef

    Permalink

    The $filter aggregation stage.

    The $filter aggregation stage.

    Definition Classes
    AggregationFramework
  18. final class First extends commands.AggregationFramework.GroupFunction

    Permalink

    The $field group accumulator.

    The $field group accumulator.

    Definition Classes
    GroupAggregation
  19. final class FirstField extends commands.AggregationFramework.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.

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

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

    Permalink

    The $graphLookup aggregation stage.

    The $graphLookup aggregation stage.

    Definition Classes
    AggregationFramework
    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 $.

    Definition Classes
    AggregationFramework
  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.

    Definition Classes
    AggregationFramework
  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.

    Definition Classes
    AggregationFramework
  26. final class IndexStatAccesses extends AnyRef

    Permalink

    Definition Classes
    AggregationFramework
  27. final class IndexStatsResult extends AnyRef

    Permalink

    Definition Classes
    AggregationFramework
  28. final class Last extends commands.AggregationFramework.GroupFunction

    Permalink

    The $field group accumulator.

    The $field group accumulator.

    Definition Classes
    GroupAggregation
  29. final class LastField extends commands.AggregationFramework.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.

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

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

    Permalink

    $listLocalSessions aggregation stage.

    $listLocalSessions aggregation stage.

    Definition Classes
    AggregationFramework
    Since

    MongoDB 3.6

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

    Permalink

    $listSessions aggregation stage.

    $listSessions aggregation stage.

    Definition Classes
    AggregationFramework
    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.

    Definition Classes
    AggregationFramework
    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.

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

    Definition Classes
    AggregationFramework
  35. final class Max extends commands.AggregationFramework.GroupFunction

    Permalink

    The $max group accumulator.

    The $max group accumulator.

    Definition Classes
    GroupAggregation
  36. final class MaxField extends commands.AggregationFramework.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.

    Definition Classes
    AggregationFramework
    Since

    MongoDB 4.2

  38. final class MergeObjects extends commands.AggregationFramework.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 commands.AggregationFramework.SortOrder

    Permalink

    Metadata sort order.

    Definition Classes
    SortAggregation
  41. final class Min extends commands.AggregationFramework.GroupFunction

    Permalink

    The $min group accumulator.

    The $min group accumulator.

    Definition Classes
    GroupAggregation
  42. final class MinField extends commands.AggregationFramework.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

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

    Definition Classes
    AggregationFramework
  44. type Pipeline = List[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.

    Definition Classes
    AggregationFramework
  47. final class Push extends commands.AggregationFramework.GroupFunction

    Permalink

    The $push group accumulator.

    The $push group accumulator.

    Definition Classes
    GroupAggregation
  48. final class PushField extends commands.AggregationFramework.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

    Definition Classes
    AggregationFramework
  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

    Definition Classes
    AggregationFramework
  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

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

    Permalink

    The $replaceWith aggregation stage.

    The $replaceWith aggregation stage.

    Definition Classes
    AggregationFramework
    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.

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

    Definition Classes
    AggregationFramework
  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

    $set aggregation stage

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

    Permalink

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

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

    Definition Classes
    AggregationFramework
  57. final class Slice extends commands.AggregationFramework.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.

    $sorts the stream based on the given fields.

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

    Permalink

    The $sortByCount aggregation stage.

    The $sortByCount aggregation stage.

    Definition Classes
    AggregationFramework
    Since

    MongoDB 3.4

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

    Permalink

    The $sortByCount aggregation stage.

    The $sortByCount aggregation stage.

    Definition Classes
    AggregationFramework
    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 commands.AggregationFramework.GroupFunction

    Permalink

    The $stdDevPop group accumulator.

    The $stdDevPop group accumulator.

    Definition Classes
    GroupAggregation
    Since

    MongoDB 3.2

  63. final class StdDevPopField extends commands.AggregationFramework.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 commands.AggregationFramework.GroupFunction

    Permalink

    The $stdDevSamp group accumulator

    The $stdDevSamp group accumulator

    Definition Classes
    GroupAggregation
    Since

    MongoDB 3.2

  65. final class StdDevSampField extends commands.AggregationFramework.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 commands.AggregationFramework.GroupFunction

    Permalink

    The $sum group accumulator.

    The $sum group accumulator.

    Definition Classes
    GroupAggregation
  67. final class SumField extends commands.AggregationFramework.GroupFunction

    Permalink

    The $sum group accumulator.

    The $sum group accumulator.

    Definition Classes
    GroupAggregation
  68. final class SumValue extends commands.AggregationFramework.GroupFunction

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

    Permalink

    The $unset aggregation stage.

    The $unset aggregation stage.

    Definition Classes
    AggregationFramework
    Since

    MongoDB 4.2

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

    Permalink
    Definition Classes
    AggregationFramework
  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

    Definition Classes
    AggregationFramework

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object AddFieldToSet

    Permalink
    Definition Classes
    GroupAggregation
  5. object AddFields

    Permalink
    Definition Classes
    AggregationFramework
  6. object AddToSet

    Permalink
    Definition Classes
    GroupAggregation
  7. object Ascending

    Permalink
    Definition Classes
    SortAggregation
  8. object AtlasSearch

    Permalink

    EXPERIMENTAL: Atlas Search (only on MongoDB Atlas)

    EXPERIMENTAL: Atlas Search (only on MongoDB Atlas)

    Definition Classes
    AtlasSearchAggregation
  9. object Avg

    Permalink
    Definition Classes
    GroupAggregation
  10. object AvgField

    Permalink
    Definition Classes
    GroupAggregation
  11. object Bucket

    Permalink
    Definition Classes
    AggregationFramework
  12. object BucketAuto

    Permalink
    Definition Classes
    AggregationFramework
  13. object ChangeStream

    Permalink
    Definition Classes
    ChangeStreamAggregation
  14. object CollStats

    Permalink
    Definition Classes
    AggregationFramework
  15. object Count

    Permalink
    Definition Classes
    AggregationFramework
  16. object CurrentOp

    Permalink
    Definition Classes
    AggregationFramework
  17. object Descending

    Permalink
    Definition Classes
    SortAggregation
  18. object Facet

    Permalink
    Definition Classes
    AggregationFramework
  19. object Filter

    Permalink

    Filter companion

    Filter companion

    Definition Classes
    AggregationFramework
  20. object First

    Permalink
    Definition Classes
    GroupAggregation
  21. object FirstField

    Permalink
    Definition Classes
    GroupAggregation
  22. object GeoNear

    Permalink
    Definition Classes
    AggregationFramework
  23. object GraphLookup

    Permalink
    Definition Classes
    AggregationFramework
  24. object Group

    Permalink
    Definition Classes
    AggregationFramework
  25. object GroupField

    Permalink
    Definition Classes
    AggregationFramework
  26. object GroupFunction

    Permalink

    Factory to declare custom call to a group function.

    Factory to declare custom call to a group function.

    Definition Classes
    GroupAggregation
  27. object GroupMulti

    Permalink
    Definition Classes
    AggregationFramework
  28. object IndexStats extends (AggregationFramework.this)#PipelineOperator with Product with Serializable

    Permalink

    $indexStats aggregation stage.

    $indexStats aggregation stage.

    Definition Classes
    AggregationFramework
    Since

    MongoDB 3.2

  29. object IndexStatsResult

    Permalink
    Definition Classes
    AggregationFramework
  30. object Last

    Permalink
    Definition Classes
    GroupAggregation
  31. object LastField

    Permalink
    Definition Classes
    GroupAggregation
  32. object Limit

    Permalink
    Definition Classes
    AggregationFramework
  33. object ListLocalSessions

    Permalink
    Definition Classes
    AggregationFramework
  34. object ListSessions

    Permalink
    Definition Classes
    AggregationFramework
  35. object Lookup

    Permalink
    Definition Classes
    AggregationFramework
  36. object Match

    Permalink
    Definition Classes
    AggregationFramework
  37. object Max

    Permalink
    Definition Classes
    GroupAggregation
  38. object MaxField

    Permalink
    Definition Classes
    GroupAggregation
  39. object Merge

    Permalink
    Definition Classes
    AggregationFramework
  40. object MergeObjects

    Permalink
    Definition Classes
    GroupAggregation
  41. object MetadataSort

    Permalink
    Definition Classes
    SortAggregation
  42. object Min

    Permalink
    Definition Classes
    GroupAggregation
  43. object MinField

    Permalink
    Definition Classes
    GroupAggregation
  44. object Out

    Permalink
    Definition Classes
    AggregationFramework
  45. 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
  46. object PlanCacheStats extends (AggregationFramework.this)#PipelineOperator with Product with Serializable

    Permalink

    $planCacheStats aggregation stage.

    $planCacheStats aggregation stage.

    Definition Classes
    AggregationFramework
    Since

    MongoDB 4.2

  47. object Project

    Permalink
    Definition Classes
    AggregationFramework
  48. object Push

    Permalink
    Definition Classes
    GroupAggregation
  49. object PushField

    Permalink
    Definition Classes
    GroupAggregation
  50. object Redact

    Permalink
    Definition Classes
    AggregationFramework
  51. object ReplaceRoot

    Permalink
    Definition Classes
    AggregationFramework
  52. object ReplaceRootField

    Permalink
    Definition Classes
    AggregationFramework
  53. object ReplaceWith

    Permalink
    Definition Classes
    AggregationFramework
  54. object Sample

    Permalink
    Definition Classes
    AggregationFramework
  55. object SearchString

    Permalink

    EXPERIMENTAL: Search string utilities

    EXPERIMENTAL: Search string utilities

    Definition Classes
    AtlasSearchAggregation
  56. object Set

    Permalink
    Definition Classes
    AggregationFramework
  57. object Skip

    Permalink
    Definition Classes
    AggregationFramework
  58. 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
  59. object Sort

    Permalink
    Definition Classes
    AggregationFramework
  60. object SortByCount

    Permalink
    Definition Classes
    AggregationFramework
  61. object SortByFieldCount

    Permalink
    Definition Classes
    AggregationFramework
  62. object StdDevPop

    Permalink
    Definition Classes
    GroupAggregation
  63. object StdDevPopField

    Permalink
    Definition Classes
    GroupAggregation
  64. object StdDevSamp

    Permalink
    Definition Classes
    GroupAggregation
  65. object StdDevSampField

    Permalink
    Definition Classes
    GroupAggregation
  66. object Sum

    Permalink
    Definition Classes
    GroupAggregation
  67. object SumAll extends commands.AggregationFramework.GroupFunction with Product with Serializable

    Permalink

    The $sum: 1 group accumulator.

    The $sum: 1 group accumulator.

    Definition Classes
    GroupAggregation
  68. object SumField

    Permalink
    Definition Classes
    GroupAggregation
  69. object TextScore extends commands.AggregationFramework.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
  70. object Unset

    Permalink
    Definition Classes
    AggregationFramework
  71. object Unwind

    Permalink
    Definition Classes
    AggregationFramework
  72. object UnwindField

    Permalink
    Definition Classes
    AggregationFramework
  73. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  74. final lazy val builder: Builder[pack.type]

    Permalink
    Attributes
    protected
    Definition Classes
    AggregationFramework
  75. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  76. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  79. final def getClass(): Class[_]

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  85. val pack: GenericCollection.pack.type

    Permalink
    Definition Classes
    AggregationFramework → PackSupport → AggregationPipeline
  86. final def pipe(name: String, arg: P.Value): P.Document

    Permalink
    Attributes
    protected
    Definition Classes
    AggregationFramework
    Annotations
    @inline()
  87. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from PackSupport[GenericCollection.pack.type]

Inherited from AtlasSearchAggregation[GenericCollection.pack.type]

Inherited from ChangeStreamAggregation[GenericCollection.pack.type]

Inherited from AggregationPipeline[GenericCollection.pack.type]

Inherited from SortAggregation[GenericCollection.pack.type]

Inherited from SliceAggregation[GenericCollection.pack.type]

Inherited from GroupAggregation[GenericCollection.pack.type]

Inherited from AnyRef

Inherited from Any

Ungrouped