Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface MongoDbCursorMethodsProperties

Package version

Cursor methods for Mongodb query

Hierarchy

  • MongoDbCursorMethodsProperties

Indexable

[property: string]: any

Describes unknown properties. The value of an unknown property can be of "any" type.

Index

Properties

Properties

Optional limit

limit: any

Specifies the maximum number of documents the server returns. limit() is analogous to the LIMIT statement in a SQL database. Type: integer (or Expression with resultType integer).

Optional project

project: any

Specifies the fields to return in the documents that match the query filter. To return all fields in the matching documents, omit this parameter. Type: string (or Expression with resultType string).

Optional skip

skip: any

Specifies the how many documents skipped and where MongoDB begins returning results. This approach may be useful in implementing paginated results. Type: integer (or Expression with resultType integer).

Optional sort

sort: any

Specifies the order in which the query returns matching documents. Type: string (or Expression with resultType string). Type: string (or Expression with resultType string).

Generated using TypeDoc