Theodor Diaconu
Theodor Diaconu
Given this query: ```js users: { friends: { firstname: 1, lastname: 1 } feed: { title, author: { firstname: 1, lastname: 1 } } } ``` Well `author` and `friends`...
Add a way to transform the body based on special variables and some params maybe? ```API import { addBodyReducer } from '...' // Global addBodyReducer((body, params) => newBody); // Query...
Show what is happening with grapher with console.logs by default in Meteor.isDevelopment Find a way to disable this Provide more levels of logging
```js Users.addLinks({ groups: { collection: Groups, type: 'many', metadata: true, metaLinks: { adder: { collection: Users, field: 'addedBy', type: 'one', } } } }) Users.createQuery({ groups: { $meta: { adder:...
Offer a way to store query times in db, and offer quick apis to fetch relevant data, giving you insight of what is the most resource expensive so you can...