We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3426ef6 commit b9dc9beCopy full SHA for b9dc9be
README.md
@@ -26,6 +26,8 @@ const Person = Model.extend({
26
}
27
});
28
29
+Config.setup();
30
+
31
Person.where({ name: 'Joe' }).page(2).per(10).sort('name').then((people) => {
32
let names = people.map((p) => { return p.fullName(); });
33
console.log(names); // ['Joe Blow', 'Joe DiMaggio', ...]
0 commit comments