mirror of
https://github.com/vale981/grapher
synced 2025-03-12 05:46:40 -04:00
9 lines
277 B
JavaScript
9 lines
277 B
JavaScript
![]() |
import createQuery from '../query/createQuery.js';
|
||
|
|
||
|
_.extend(Mongo.Collection.prototype, {
|
||
|
createNamedQuery(...args) {
|
||
|
console.warn('createNamedQuery is deprecated. Functionality has been moved over to createQuery');
|
||
|
return this.createQuery(...args);
|
||
|
}
|
||
|
});
|