-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgetAllPosts.js
37 lines (27 loc) · 990 Bytes
/
getAllPosts.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { MongoClient, ServerApiVersion } from 'mongodb';
const uri = "mongodb+srv://indhiraraj7:[email protected]/?retryWrites=true&w=majority";
// Create a MongoClient with a MongoClientOptions object to set the Stable API version
const client = new MongoClient(uri, {
serverApi: {
version: ServerApiVersion.v1,
strict: true,
deprecationErrors: true,
}
});
async function getPosts() {
try {
// Connect to the "testDb" database and access its "testCollection" collection
await client.connect();
const database = client.db("testDb");
const collection = database.collection("testCollection");
// Find all documents in the "testCollection" collection
const documents = await collection.find({}).toArray();
return JSON.stringify(documents, null, 2);
} catch (error) {
console.error(error);
} finally {
// Close the MongoDB client connection
await client.close();
}
}
export default getPosts;