platform/packages/mongo
2021-09-25 14:32:32 +08:00
..
.vscode Add 'packages/mongo/' from commit '6acfbc02d95d94bf1020ade556e372e8a60794af' 2020-02-15 18:43:58 -05:00
example Published mongo 2021-06-18 19:10:38 +08:00
lib Updated linter to package:lints 2021-09-25 14:32:32 +08:00
test Updated linter to package:lints 2021-09-25 14:32:32 +08:00
.gitignore Add 'packages/mongo/' from commit '6acfbc02d95d94bf1020ade556e372e8a60794af' 2020-02-15 18:43:58 -05:00
.travis.yml Add 'packages/mongo/' from commit '6acfbc02d95d94bf1020ade556e372e8a60794af' 2020-02-15 18:43:58 -05:00
analysis_options.yaml Updated linter to package:lints 2021-09-25 14:32:32 +08:00
CHANGELOG.md Updated linter to package:lints 2021-09-25 14:32:32 +08:00
LICENSE Updated linter to package:lints 2021-09-25 14:32:32 +08:00
pubspec.yaml Updated linter to package:lints 2021-09-25 14:32:32 +08:00
README.md Updated linter to package:lints 2021-09-25 14:32:32 +08:00

Angel3 Mongo

Pub Version (including pre-releases) Null Safety Gitter License

MongoDB-enabled services for the Angel3 framework.

Installation

Add the following to your pubspec.yaml:

dependencies:
  angel3_mongo: ^3.1.0

Usage

This library exposes one main class: MongoService.

Model

Model is class with no real functionality; however, it represents a basic document, and your services should host inherited classes. Other Angel service providers host Model as well, so you will easily be able to modify your application if you ever switch databases.

class User extends Model {
  String username;
  String password;
}

void main() async {
    var db = Db('mongodb://localhost:27017/local');
    await db.open();
    
    var service = app.use('/api/users', MongoService(db.collection("users")));
    
    service.afterCreated.listen((event) {
        print("New user: ${event.result}");
    });
}

MongoService

This class interacts with a DbCollection (from mongo_dart) and serializing data to and from Maps.

Querying

You can query these services as follows:

    /path/to/service?foo=bar

The above will query the database to find records where 'foo' equals 'bar'.

The former will sort result in ascending order of creation, and so will the latter.

    List queried = await MyService.index({r"$query": where.id(new ObjectId.fromHexString("some hex string"})));

And, of course, you can use mongo_dart queries. Just pass it as query within params.

See the tests for more usage examples.