Skip to content
James S edited this page Nov 29, 2013 · 13 revisions

find

Find records with matching criteria, can be chained (see below):

Person.find({status:'active'}, function(err, results) {
 ...
});

You can limit your results as well. This limits our results to 10

Person.find({status:'active'}, 10, function(err,results) {
  ...
});

```Person.all``` is an alias to ```Person.find```

## get
Find record by primary key.

Person.get(1,function(err,person) { ... });

one

Find one record with similar syntax to find.

Person.one( function(err, person) {
  ...
});

count

Get the number of matching records.

Person.count({status:'active'}, function(err,activePeople) {
  ...
});

## exists
Test a record matching your conditions exists.

Person.count({id:1, status:'active'}, function(err,personIsActive) { ... });

Clone this wiki locally