Skip to content

MongoDB request DSLopensavvy.ktmongo.dsl.aggregation.stagesHasLimit

HasLimit

Pipeline implementing the $limit stage.

Inheritors

Properties

context

abstract val context: 

The context used to generate this pipeline.

Functions

limit

open fun limit(amount: Int): Pipeline<Document>

Limits the number of elements passed to the next stage to amount.

open fun limit(amount: Long): Pipeline<Document>

Limits the number of elements passed to the next stage to amount.

reinterpret

abstract fun <New : Any> reinterpret(): Pipeline<New>

Changes the type of the returned document, with no type-safety.

toString

abstract override fun toString(): String

JSON representation of this pipeline.

withStage

abstract fun withStage(stage: BsonNode): Pipeline<Document>

Creates a new pipeline that expands on the current one by adding stage.

writeTo

abstract fun writeTo(writer: )

Writes the entire pipeline into writer.