Skip to content
This repository has been archived by the owner on May 26, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' into types
Browse files Browse the repository at this point in the history
  • Loading branch information
pyldin601 committed Oct 1, 2017
2 parents b9b789b + 597066b commit 6e8a152
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![Build Status](https://travis-ci.org/pldin601/Fluorite.js.svg?branch=master)](https://travis-ci.org/pldin601/Fluorite.js)
[![Coverage Status](https://coveralls.io/repos/github/pldin601/Fluorite.js/badge.svg?branch=master)](https://coveralls.io/github/pldin601/Fluorite.js?branch=master)
[![Code Climate](https://codeclimate.com/github/pldin601/Fluorite.js/badges/gpa.svg)](https://codeclimate.com/github/pldin601/Fluorite.js)

[![Dependency Status](https://www.versioneye.com/user/projects/59cffe6f0fb24f1bf41494f9/badge.svg?style=flat-square)](https://www.versioneye.com/user/projects/59cffe6f0fb24f1bf41494f9)

Fluorite is a lightweight ORM based on Knex.js query builder.
It features promise based interface, provides transactions support,
Expand Down Expand Up @@ -119,7 +119,7 @@ for await (const user of User.objects) {
To filter query result use method `filter()` passing to it object with attributes for refining.

```javascript
const males = await User.objects.filter({ gender: 'male' });
const men = await User.objects.filter({ gender: 'male' });
```

By default used `=` operator for comparing. But you alter this behavior.
Expand Down
15 changes: 14 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,18 @@
"jsx",
"json"
]
}
},
"keywords": [
"orm",
"database",
"mysql",
"postgresql",
"sqlite",
"datamapper",
"active record",
"object relational mapper",
"es6",
"immutable",
"async"
]
}

0 comments on commit 6e8a152

Please sign in to comment.