grapher/lib/namedQuery/_extension.js
2017-11-23 21:02:00 +02:00

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);
}
});