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