mirror of
https://github.com/vale981/grapher
synced 2025-03-06 10:01:40 -05:00
8 lines
277 B
JavaScript
8 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);
|
|
}
|
|
});
|