velocious 1.0.17 → 1.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -493,6 +493,10 @@ export default class VelociousDatabaseRecord {
|
|
|
493
493
|
return this._newQuery().preload(...args)
|
|
494
494
|
}
|
|
495
495
|
|
|
496
|
+
static toArray(...args) {
|
|
497
|
+
return this._newQuery().toArray(...args)
|
|
498
|
+
}
|
|
499
|
+
|
|
496
500
|
static where(...args) {
|
|
497
501
|
return this._newQuery().where(...args)
|
|
498
502
|
}
|