MongoDB Atlas 쿼리
Atlas Device Sync, Atlas Edge Server, Data API 및 HTTPS endpoints 는 더 이상 사용되지 않습니다. 자세한 내용은 지원 중단 페이지를 참조하세요.
내장 데이터 소스 클라이언트 를 사용하여 함수에서 연결된 MongoDB 데이터 소스 의 데이터로 작업할 수 있습니다. 클라이언트 에는 데이터를 읽고, 쓰기 (write), 집계할 수 있는 메서드가 포함되어 있습니다.
함수에서 데이터 소스로 작업하는 방법에 대한 예는 다음 가이드를 참조하세요:.
사용 가능한 쿼리 및 집계 메서드에 대한 자세한 참조 정보는 MongoDB API 참조를 참조하세요.
exports = async function() { // 1. Get a data source client const mongodb = context.services.get("mongodb-atlas"); // 2. Get a database & collection const db = mongodb.db("myDatabase") const collection = db.collection("myCollection") // 3. Read and write data with MongoDB queries await collection.insertOne({ text: "Hello, world!", author: context.user.id }) return await collection.findOne({ author: context.user.id }) }