Skip to content

col.get(id)

Geoff Cox edited this page Dec 6, 2015 · 1 revision

Usage

col.get(id)

Example

var sing = col.doc({ thing: 'sing' });
var play = col.doc({ thing: 'play' });
col.get(sing.id()).then(function (alsoSing) {
  // alsoSing = sing
});
Clone this wiki locally