mirror of
https://github.com/vale981/grapher
synced 2025-03-10 21:06:41 -04:00
6 lines
225 B
JavaScript
6 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);
|
|
}
|
|
});
|