mirror of
https://github.com/vale981/grapher
synced 2025-03-05 09:31:42 -05:00
11 lines
281 B
JavaScript
11 lines
281 B
JavaScript
import { Mongo } from 'meteor/mongo';
|
|
import astToQuery from './lib/astToQuery';
|
|
|
|
export { setAstToQueryDefaults } from './lib/defaults';
|
|
export { default as astToBody } from './lib/astToBody';
|
|
|
|
Object.assign(Mongo.Collection.prototype, {
|
|
astToQuery,
|
|
});
|
|
|
|
export { astToQuery };
|