mirror of
https://github.com/vale981/grapher
synced 2025-03-10 12:56:41 -04:00
10 lines
197 B
JavaScript
10 lines
197 B
JavaScript
import { createQuery } from 'meteor/cultofcoders:grapher';
|
|
|
|
const query = createQuery('counts_posts_query', {
|
|
counts_posts: {
|
|
_id: 1,
|
|
text: 1,
|
|
},
|
|
});
|
|
|
|
export default query;
|