Crates.io | mongo-data |
lib.rs | mongo-data |
version | 0.0.5 |
source | src |
created_at | 2023-06-01 18:29:02.200435 |
updated_at | 2023-06-03 15:11:58.963028 |
description | Mongo data |
homepage | |
repository | |
max_upload_size | |
id | 880013 |
size | 46,434 |
A library that offers out of the box repository for mongo database(inspired by springboot data
)/
The idea is to abstract away some of the boilerplate that you have write for every repository.
Using generics, provide implementation for CRUD
operations and exposes methods to get documents
by filter for single
or multiple
documents.
let db = mongo_data::config::init_db(mongo_uri, database_name)
.await
.expect("could not connect to database");