Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 882 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 882 Bytes

MongoDB

A MongoDB Atlas Data API library compatible with all Apple platforms, Swift Cloud and Fastly Compute@Edge

Usage

import MongoDB

let client = MongoClient(
    endpoint: "https://us-east-1.aws.data.mongodb-api.com/app/data-12345/endpoint/data/v1",
    cluster: "cluster-prod",
    database: "test",
    apiKey: "..."
)

let user = try await client
    .collection("users")
    .send(.findOne())
    .document(User.self)