apiexamples
Browse
Pricing
Docs
Have a key?
Get All-Access — $19
Browse
/
MongoDB
/
Query Documents
Query Documents
MongoDB
$19 · Pro
Query documents from a MongoDB collection with a filter using the official driver.
TypeScript
Node
Python
Go
PHP
Ruby
queryDocuments.ts
const
cursor
=
orders
.
find
(
filter
).
sort
({
createdAt
:
-
1
}).
limit
(
20
);
Unlock the full snippet
This is a Pro snippet — get all-access for $19, or unlock just this one snippet for $1.
Get All-Access — $19
Unlock just this one — $1
Already paid? Enter your key
Related snippets
MongoDB
TypeScript
Insert a Document
Insert a document into a MongoDB collection using the official driver.
const result = await collection.insertOne(newCustomer);
$19 · Pro
View →
MongoDB
TypeScript
Update a Document
Update a document in a MongoDB collection using the official driver.
const result = await subscribers.updateOne(filter, update);
$19 · Pro
View →
Firebase
TypeScript
Verify ID Token
Verify a Firebase Auth ID token on the backend.
const decodedToken = await getAuth().verifyIdToken(idToken);
$19 · Pro
View →
Query Documents — MongoDB Example (TypeScript, Node, Python, Go, PHP, Ruby) | apiexamples