- The purpose of this project is to support define REST Api Query quickly by mapping url params with mongodb query
- Compatible with koa (generator)
- Querying article with commentsCount between 5 and 10
- Given:
minCommentsCount=5&maxCommentsCount=10
- And you have the config file like file: tests/process-filter.test.js & tests/article.model.js
- It will parse the filter into
{commentsCount: {$gte: 5,$lte: 10}
import * as ArticleSchema from './article.model';
const repository = new BaseRepository(Article, ArticleSchema.config);
const Article = mongoose.model(ArticleSchema.schemaName, ArticleSchema.schema);
View more at '/tests/base-repository.tests.js'
import { createController } from 'base-repository';
const controller = createController(repository);
Controller Function:
- query
- insert
- update
- getByKey
- getById
- getByFilter
- deleteById
- addChild
- removeChild
- Add Code Coverage
npm install
npm test
npm install
Generate Data
node examples/generate-data
Run Example
node examples
- Need a list of entities (real data).
- Transfer a list of entities into mongodb data & use as initial testing data