Skip to content

Instantly share code, notes, and snippets.

@rturk
rturk / gist:f5ff8a16124365b8a113
Created February 12, 2016 19:11
Mongoose Virtual field async await
Schema.virtual('comments')
//Returns comment owned by this product
.get(
async obj => await Comment
.find({ 'owner': this._id, deleted: { $ne: true } })
.sort('-likesCount -date_modified')
.limit(6)
.exec()
);
@rturk
rturk / gist:e00021d694b851643db7
Created January 19, 2016 23:14
ExNavigator Push Router
export default class App extends Component {
render() {
return (
<ExNavigator
initialRoute={TestRouter.getCompanyRoute()}
style={{flex: 1}}
sceneStyle={{ paddingTop: 64 }} />
);
}
}