Interface QueryRequest

MongoDB Query Request.

Hierarchy

  • QueryRequest

Properties

collectionname: string

MongoDB Collection to query. This field is required.

explain: boolean

Enabling explain will provides information on the execution of the query

orderby: string

MongoDB order by. This field is optional with a default of {"_id": 1}. You can specify "timestamp" as a string or an object like {"timestamp": -1}.

projection: string

MongoDB Query projection. This field is optional.

query: string

MongoDB Query to execute. This field is required.

queryas: string

Query as if you were this _id. (_id can be a user, role, or customer from the users collection)

skip: number

MongoDB Number of documents to skip, used for paging on the same query. This field is optional with a default of 0.

top: number

MongoDB Maximum number of documents to return. This field is optional with a default of 100.

Generated using TypeDoc