This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { connectToDatabase } from '$lib/db'; | |
| import { ObjectId } from 'mongodb'; | |
| export async function get(request) { | |
| try { | |
| const completed = request.query.get('completed') === 'true' ? true : false; | |
| const dbConnection = await connectToDatabase(); | |
| const db = dbConnection.db; | |
| const collection = db.collection('sveltetodos'); | |
| const todos = await collection.find({ completed }).toArray(); |